From 66e54a00aa8e4ef3044a419057c3be4540a1875e Mon Sep 17 00:00:00 2001 From: 13002457275 <4448445@qq.com> Date: Wed, 19 Apr 2023 16:33:19 +0800 Subject: [PATCH] shao --- fastapi-plotly-dash-master/.gitignore | 142 + fastapi-plotly-dash-master/README.md | 22 + fastapi-plotly-dash-master/app.py | 34 + fastapi-plotly-dash-master/dashapp.py | 61 + fastapi-plotly-dash-master/poetry.lock | 767 + fastapi-plotly-dash-master/pyproject.toml | 21 + peotry.txt | 6 + pyproject.toml | 14 + python_advance-main/README.md | 1 + .../advancedthread/__main__.py | 69 + .../asyncio_advancedtask/__main__.py | 57 + python_advance-main/asyncio_basic/__main__.py | 15 + python_advance-main/asyncio_task/__main__.py | 28 + .../classdecorator/__main__.py | 52 + python_advance-main/closure/__main__.py | 15 + .../contextmanager/__main__.py | 34 + python_advance-main/dataclass/__main__.py | 31 + python_advance-main/decorator/__main__.py | 40 + python_advance-main/generator/__main__.py | 29 + python_advance-main/metaclass/__main__.py | 17 + .../metaclass_sample/__main__.py | 49 + python_advance-main/mixin/__main__.py | 53 + .../multiprocesses/__main__.py | 42 + python_advance-main/nonlocal/__main__.py | 19 + python_advance-main/processpool/__main__.py | 39 + python_advance-main/regex/__main__.py | 51 + python_advance-main/singleton/__main__.py | 35 + python_advance-main/threadlock/__main__.py | 89 + python_advance-main/threadpool/__main__.py | 55 + python_advance-main/threads/__main__.py | 18 + python_advance-main/typeclass/__main__.py | 24 + python_advance-main/variablescope/__main__.py | 17 + python_advance-main/yield_from/__main__.py | 69 + .../.github/dependabot.yml | 19 + .../.gitignore | 140 + .../README.md | 24 + .../application.py | 54 + .../docker-compose.yml | 11 + .../poetry.lock | 910 + .../pyproject.toml | 50 + .../templates/index.html | 105 + test.py | 11 - 人与鳄鱼/人与鳄鱼 dash.py | 39 + 实例学习pandas2/1.py | 11 + 实例学习pandas2/chipotle.tsv | 4623 +++++ .../1.1 列表方式打印质数.py | 0 {实验 => 实验0}/1.1 打印99 乘法表.py | 0 {实验 => 实验0}/1.1 猜数字.py | 0 ...文件操作--学生成绩管理系统.py | 0 {实验 => 实验0}/students.txt | 0 {实验 => 实验0}/猪肉价格.py | 0 {实验 => 实验0}/猪肉价格/bean.png | Bin {实验 => 实验0}/猪肉价格/bean.txt | 0 .../猪肉价格/maizeprice.png | Bin .../猪肉价格/maizeprice.txt | 0 {实验 => 实验0}/猪肉价格/pig_in.png | Bin {实验 => 实验0}/猪肉价格/pig_in.txt | 0 .../猪肉价格/pig_local.png | Bin .../猪肉价格/pig_local.txt | 0 {实验 => 实验0}/猪肉价格/pigprice.png | Bin {实验 => 实验0}/猪肉价格/pigprice.txt | 0 {实验 => 实验0}/猪肉价格/pork.png | Bin {实验 => 实验0}/猪肉价格/pork.txt | 0 {实验 => 实验0}/猪肉价格/time.txt | 0 实验1/1.py | 15 + 实验1/births.csv | 15548 ++++++++++++++++ 实验1/pands速查表.py | 22 + 实验1/state-abbrevs.csv | 52 + 实验1/state-areas.csv | 53 + 实验1/state-population.csv | 2545 +++ 70 files changed, 26236 insertions(+), 11 deletions(-) create mode 100644 fastapi-plotly-dash-master/.gitignore create mode 100644 fastapi-plotly-dash-master/README.md create mode 100644 fastapi-plotly-dash-master/app.py create mode 100644 fastapi-plotly-dash-master/dashapp.py create mode 100644 fastapi-plotly-dash-master/poetry.lock create mode 100644 fastapi-plotly-dash-master/pyproject.toml create mode 100644 peotry.txt create mode 100644 pyproject.toml create mode 100644 python_advance-main/README.md create mode 100644 python_advance-main/advancedthread/__main__.py create mode 100644 python_advance-main/asyncio_advancedtask/__main__.py create mode 100644 python_advance-main/asyncio_basic/__main__.py create mode 100644 python_advance-main/asyncio_task/__main__.py create mode 100644 python_advance-main/classdecorator/__main__.py create mode 100644 python_advance-main/closure/__main__.py create mode 100644 python_advance-main/contextmanager/__main__.py create mode 100644 python_advance-main/dataclass/__main__.py create mode 100644 python_advance-main/decorator/__main__.py create mode 100644 python_advance-main/generator/__main__.py create mode 100644 python_advance-main/metaclass/__main__.py create mode 100644 python_advance-main/metaclass_sample/__main__.py create mode 100644 python_advance-main/mixin/__main__.py create mode 100644 python_advance-main/multiprocesses/__main__.py create mode 100644 python_advance-main/nonlocal/__main__.py create mode 100644 python_advance-main/processpool/__main__.py create mode 100644 python_advance-main/regex/__main__.py create mode 100644 python_advance-main/singleton/__main__.py create mode 100644 python_advance-main/threadlock/__main__.py create mode 100644 python_advance-main/threadpool/__main__.py create mode 100644 python_advance-main/threads/__main__.py create mode 100644 python_advance-main/typeclass/__main__.py create mode 100644 python_advance-main/variablescope/__main__.py create mode 100644 python_advance-main/yield_from/__main__.py create mode 100644 real-time-charts-with-fastapi-master/.github/dependabot.yml create mode 100644 real-time-charts-with-fastapi-master/.gitignore create mode 100644 real-time-charts-with-fastapi-master/README.md create mode 100644 real-time-charts-with-fastapi-master/application.py create mode 100644 real-time-charts-with-fastapi-master/docker-compose.yml create mode 100644 real-time-charts-with-fastapi-master/poetry.lock create mode 100644 real-time-charts-with-fastapi-master/pyproject.toml create mode 100644 real-time-charts-with-fastapi-master/templates/index.html delete mode 100644 test.py create mode 100644 人与鳄鱼/人与鳄鱼 dash.py create mode 100644 实例学习pandas2/1.py create mode 100644 实例学习pandas2/chipotle.tsv rename {实验 => 实验0}/1.1 列表方式打印质数.py (100%) rename {实验 => 实验0}/1.1 打印99 乘法表.py (100%) rename {实验 => 实验0}/1.1 猜数字.py (100%) rename {实验 => 实验0}/Python语言文件操作--学生成绩管理系统.py (100%) rename {实验 => 实验0}/students.txt (100%) rename {实验 => 实验0}/猪肉价格.py (100%) rename {实验 => 实验0}/猪肉价格/bean.png (100%) rename {实验 => 实验0}/猪肉价格/bean.txt (100%) rename {实验 => 实验0}/猪肉价格/maizeprice.png (100%) rename {实验 => 实验0}/猪肉价格/maizeprice.txt (100%) rename {实验 => 实验0}/猪肉价格/pig_in.png (100%) rename {实验 => 实验0}/猪肉价格/pig_in.txt (100%) rename {实验 => 实验0}/猪肉价格/pig_local.png (100%) rename {实验 => 实验0}/猪肉价格/pig_local.txt (100%) rename {实验 => 实验0}/猪肉价格/pigprice.png (100%) rename {实验 => 实验0}/猪肉价格/pigprice.txt (100%) rename {实验 => 实验0}/猪肉价格/pork.png (100%) rename {实验 => 实验0}/猪肉价格/pork.txt (100%) rename {实验 => 实验0}/猪肉价格/time.txt (100%) create mode 100644 实验1/1.py create mode 100644 实验1/births.csv create mode 100644 实验1/pands速查表.py create mode 100644 实验1/state-abbrevs.csv create mode 100644 实验1/state-areas.csv create mode 100644 实验1/state-population.csv diff --git a/fastapi-plotly-dash-master/.gitignore b/fastapi-plotly-dash-master/.gitignore new file mode 100644 index 0000000..b117553 --- /dev/null +++ b/fastapi-plotly-dash-master/.gitignore @@ -0,0 +1,142 @@ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# JetBrains IDEs +.idea/ diff --git a/fastapi-plotly-dash-master/README.md b/fastapi-plotly-dash-master/README.md new file mode 100644 index 0000000..7e67f63 --- /dev/null +++ b/fastapi-plotly-dash-master/README.md @@ -0,0 +1,22 @@ +# FastAPI + Dash Sample App +Sample application that runs a Dash app mounted inside a FastAPI webserver. + +## Quickstart + +1. Install dependencies + ```bash + poetry install + ``` +2. Run webserver + ```bash + poetry run python -m app + ``` +3. Load up in browser: http://localhost:8000 + +## Routes + +| Route | Description | Link | +|-------------|----------------------------------|------------------------------| +| GET / | Base route (tests shared prefix) | http://localhost:8000/ | +| GET /status | Non-Dash route | http://localhost:8000/status | +| GET /dash | Dash app | http://localhost:8000/dash | diff --git a/fastapi-plotly-dash-master/app.py b/fastapi-plotly-dash-master/app.py new file mode 100644 index 0000000..d62fe14 --- /dev/null +++ b/fastapi-plotly-dash-master/app.py @@ -0,0 +1,34 @@ +import uvicorn +from fastapi import FastAPI +from fastapi.middleware.wsgi import WSGIMiddleware + +from dashapp import create_dash_app + +app = FastAPI() + + +@app.get("/") +def read_main(): + return { + "routes": [ + {"method": "GET", "path": "/", "summary": "Landing"}, + {"method": "GET", "path": "/status", "summary": "App status"}, + {"method": "GET", "path": "/dash", "summary": "Sub-mounted Dash application"}, + ] + } + + +@app.get("/status") +def get_status(): + return {"status": "ok"} + + +# A bit odd, but the only way I've been able to get prefixing of the Dash app +# to work is by allowing the Dash/Flask app to prefix itself, then mounting +# it to root +dash_app = create_dash_app(requests_pathname_prefix="/dash/") +app.mount("/dash", WSGIMiddleware(dash_app.server)) + + +if __name__ == "__main__": + uvicorn.run(app, port=8000) diff --git a/fastapi-plotly-dash-master/dashapp.py b/fastapi-plotly-dash-master/dashapp.py new file mode 100644 index 0000000..09d7775 --- /dev/null +++ b/fastapi-plotly-dash-master/dashapp.py @@ -0,0 +1,61 @@ +import dash +from dash.dependencies import Input, Output +from dash import dcc, html + +import flask +import pandas as pd +import os + + +def create_dash_app(requests_pathname_prefix: str = None) -> dash.Dash: + """ + Sample Dash application from Plotly: https://github.com/plotly/dash-hello-world/blob/master/app.py + """ + server = flask.Flask(__name__) + server.secret_key = os.environ.get('secret_key', 'secret') + + df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/hello-world-stock.csv') + + app = dash.Dash(__name__, server=server, requests_pathname_prefix=requests_pathname_prefix) + + app.scripts.config.serve_locally = False + dcc._js_dist[0]['external_url'] = 'https://cdn.plot.ly/plotly-basic-latest.min.js' + + app.layout = html.Div([ + html.H1('Stock Tickers'), + dcc.Dropdown( + id='my-dropdown', + options=[ + {'label': 'Tesla', 'value': 'TSLA'}, + {'label': 'Apple', 'value': 'AAPL'}, + {'label': 'Coke', 'value': 'COKE'} + ], + value='TSLA' + ), + dcc.Graph(id='my-graph') + ], className="container") + + @app.callback(Output('my-graph', 'figure'), + [Input('my-dropdown', 'value')]) + def update_graph(selected_dropdown_value): + dff = df[df['Stock'] == selected_dropdown_value] + return { + 'data': [{ + 'x': dff.Date, + 'y': dff.Close, + 'line': { + 'width': 3, + 'shape': 'spline' + } + }], + 'layout': { + 'margin': { + 'l': 30, + 'r': 20, + 'b': 30, + 't': 20 + } + } + } + + return app diff --git a/fastapi-plotly-dash-master/poetry.lock b/fastapi-plotly-dash-master/poetry.lock new file mode 100644 index 0000000..da0de96 --- /dev/null +++ b/fastapi-plotly-dash-master/poetry.lock @@ -0,0 +1,767 @@ +[[package]] +name = "anyio" +version = "3.4.0" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +category = "main" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"] +test = ["coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "pytest (>=6.0)", "pytest-mock (>=3.6.1)", "trustme", "contextlib2", "uvloop (<0.15)", "mock (>=4)", "uvloop (>=0.15)"] +trio = ["trio (>=0.16)"] + +[[package]] +name = "asgiref" +version = "3.4.1" +description = "ASGI specs, helper code, and adapters" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +tests = ["pytest", "pytest-asyncio", "mypy (>=0.800)"] + +[[package]] +name = "black" +version = "21.12b0" +description = "The uncompromising code formatter." +category = "dev" +optional = false +python-versions = ">=3.6.2" + +[package.dependencies] +click = ">=7.1.2" +mypy-extensions = ">=0.4.3" +pathspec = ">=0.9.0,<1" +platformdirs = ">=2" +tomli = ">=0.2.6,<2.0.0" +typing-extensions = [ + {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, + {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""}, +] + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +python2 = ["typed-ast (>=1.4.3)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "brotli" +version = "1.0.9" +description = "Python bindings for the Brotli compression library" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "click" +version = "8.0.3" +description = "Composable command line interface toolkit" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "colorama" +version = "0.4.4" +description = "Cross-platform colored terminal text." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[[package]] +name = "dash" +version = "2.0.0" +description = "A Python framework for building reactive web-apps. Developed by Plotly." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +dash-core-components = "2.0.0" +dash-html-components = "2.0.0" +dash-table = "5.0.0" +Flask = ">=1.0.4" +flask-compress = "*" +plotly = ">=5.0.0" + +[package.extras] +dev = ["dash-flow-example (==0.0.5)", "dash-dangerously-set-inner-html", "mock (==4.0.3)", "flake8 (==3.9.2)", "PyYAML (==5.4.1)", "pylint (==2.10.2)", "black (==21.6b0)", "fire (==0.4.0)", "coloredlogs (==15.0.1)", "flask-talisman (==0.8.1)", "isort (==4.3.21)", "orjson (==3.3.1)", "orjson (==3.6.1)"] +testing = ["pytest (>=6.0.2)", "pytest-sugar (>=0.9.4)", "pytest-mock (>=3.2.0)", "lxml (>=4.6.2)", "selenium (>=3.141.0)", "percy (>=2.0.2)", "requests[security] (>=2.21.0)", "beautifulsoup4 (>=4.8.2)", "waitress (>=1.4.4)", "diskcache (>=5.2.1)", "multiprocess (>=0.70.12)", "redis (>=3.5.3)", "psutil (>=5.8.0)", "celery[redis] (>=5.1.2)", "flaky (>=3.7.0)", "cryptography (<3.4)"] + +[[package]] +name = "dash-core-components" +version = "2.0.0" +description = "Core component suite for Dash" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "dash-html-components" +version = "2.0.0" +description = "Vanilla HTML components for Dash" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "dash-table" +version = "5.0.0" +description = "Dash table" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "fastapi" +version = "0.70.0" +description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0" +starlette = "0.16.0" + +[package.extras] +all = ["requests (>=2.24.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "itsdangerous (>=1.1.0,<3.0.0)", "pyyaml (>=5.3.1,<6.0.0)", "ujson (>=4.0.1,<5.0.0)", "orjson (>=3.2.1,<4.0.0)", "email_validator (>=1.1.1,<2.0.0)", "uvicorn[standard] (>=0.12.0,<0.16.0)"] +dev = ["python-jose[cryptography] (>=3.3.0,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "uvicorn[standard] (>=0.12.0,<0.16.0)"] +doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=7.1.9,<8.0.0)", "mdx-include (>=1.4.1,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "typer-cli (>=0.0.12,<0.0.13)", "pyyaml (>=5.3.1,<6.0.0)"] +test = ["pytest (>=6.2.4,<7.0.0)", "pytest-cov (>=2.12.0,<4.0.0)", "mypy (==0.910)", "flake8 (>=3.8.3,<4.0.0)", "black (==21.9b0)", "isort (>=5.0.6,<6.0.0)", "requests (>=2.24.0,<3.0.0)", "httpx (>=0.14.0,<0.19.0)", "email_validator (>=1.1.1,<2.0.0)", "sqlalchemy (>=1.3.18,<1.5.0)", "peewee (>=3.13.3,<4.0.0)", "databases[sqlite] (>=0.3.2,<0.6.0)", "orjson (>=3.2.1,<4.0.0)", "ujson (>=4.0.1,<5.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "flask (>=1.1.2,<3.0.0)", "anyio[trio] (>=3.2.1,<4.0.0)", "types-ujson (==0.1.1)", "types-orjson (==3.6.0)", "types-dataclasses (==0.1.7)"] + +[[package]] +name = "flask" +version = "2.0.2" +description = "A simple framework for building complex web applications." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +click = ">=7.1.2" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.0" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "flask-compress" +version = "1.10.1" +description = "Compress responses in your Flask app with gzip, deflate or brotli." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +brotli = "*" +flask = "*" + +[[package]] +name = "h11" +version = "0.12.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "idna" +version = "3.3" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "itsdangerous" +version = "2.0.1" +description = "Safely pass data to untrusted environments and back." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "jinja2" +version = "3.0.3" +description = "A very fast and expressive template engine." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "markupsafe" +version = "2.0.1" +description = "Safely add untrusted strings to HTML/XML markup." +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "mypy-extensions" +version = "0.4.3" +description = "Experimental type system extensions for programs checked with the mypy typechecker." +category = "dev" +optional = false +python-versions = "*" + +[[package]] +name = "numpy" +version = "1.21.1" +description = "NumPy is the fundamental package for array computing with Python." +category = "main" +optional = false +python-versions = ">=3.7" + +[[package]] +name = "numpy" +version = "1.21.4" +description = "NumPy is the fundamental package for array computing with Python." +category = "main" +optional = false +python-versions = ">=3.7,<3.11" + +[[package]] +name = "pandas" +version = "1.3.4" +description = "Powerful data structures for data analysis, time series, and statistics" +category = "main" +optional = false +python-versions = ">=3.7.1" + +[package.dependencies] +numpy = [ + {version = ">=1.17.3", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, + {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""}, + {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""}, + {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, +] +python-dateutil = ">=2.7.3" +pytz = ">=2017.3" + +[package.extras] +test = ["hypothesis (>=3.58)", "pytest (>=6.0)", "pytest-xdist"] + +[[package]] +name = "pathspec" +version = "0.9.0" +description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" + +[[package]] +name = "platformdirs" +version = "2.4.0" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] + +[[package]] +name = "plotly" +version = "5.4.0" +description = "An open-source, interactive data visualization library for Python" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +six = "*" +tenacity = ">=6.2.0" + +[[package]] +name = "pydantic" +version = "1.8.2" +description = "Data validation and settings management using python 3.6 type hinting" +category = "main" +optional = false +python-versions = ">=3.6.1" + +[package.dependencies] +typing-extensions = ">=3.7.4.3" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytz" +version = "2021.3" +description = "World timezone definitions, modern and historical" +category = "main" +optional = false +python-versions = "*" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" + +[[package]] +name = "sniffio" +version = "1.2.0" +description = "Sniff out which async library your code is running under" +category = "main" +optional = false +python-versions = ">=3.5" + +[[package]] +name = "starlette" +version = "0.16.0" +description = "The little ASGI library that shines." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.dependencies] +anyio = ">=3.0.0,<4" + +[package.extras] +full = ["itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests", "graphene"] + +[[package]] +name = "tenacity" +version = "8.0.1" +description = "Retry code until it succeeds" +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +doc = ["reno", "sphinx", "tornado (>=4.5)"] + +[[package]] +name = "tomli" +version = "1.2.2" +description = "A lil' TOML parser" +category = "dev" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "typing-extensions" +version = "4.0.1" +description = "Backported and Experimental Type Hints for Python 3.6+" +category = "main" +optional = false +python-versions = ">=3.6" + +[[package]] +name = "uvicorn" +version = "0.16.0" +description = "The lightning-fast ASGI server." +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +asgiref = ">=3.4.0" +click = ">=7.0" +h11 = ">=0.8" + +[package.extras] +standard = ["httptools (>=0.2.0,<0.4.0)", "watchgod (>=0.6)", "python-dotenv (>=0.13)", "PyYAML (>=5.1)", "websockets (>=9.1)", "websockets (>=10.0)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "colorama (>=0.4)"] + +[[package]] +name = "werkzeug" +version = "2.0.2" +description = "The comprehensive WSGI web application library." +category = "main" +optional = false +python-versions = ">=3.6" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "1.1" +python-versions = "^3.8" +content-hash = "bf6e266a66625943ffbdbc8b28b90292abe6cca69dc9dbe4f277d8ccd691854e" + +[metadata.files] +anyio = [ + {file = "anyio-3.4.0-py3-none-any.whl", hash = "sha256:2855a9423524abcdd652d942f8932fda1735210f77a6b392eafd9ff34d3fe020"}, + {file = "anyio-3.4.0.tar.gz", hash = "sha256:24adc69309fb5779bc1e06158e143e0b6d2c56b302a3ac3de3083c705a6ed39d"}, +] +asgiref = [ + {file = "asgiref-3.4.1-py3-none-any.whl", hash = "sha256:ffc141aa908e6f175673e7b1b3b7af4fdb0ecb738fc5c8b88f69f055c2415214"}, + {file = "asgiref-3.4.1.tar.gz", hash = "sha256:4ef1ab46b484e3c706329cedeff284a5d40824200638503f5768edb6de7d58e9"}, +] +black = [ + {file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"}, + {file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, +] +brotli = [ + {file = "Brotli-1.0.9-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:268fe94547ba25b58ebc724680609c8ee3e5a843202e9a381f6f9c5e8bdb5c70"}, + {file = "Brotli-1.0.9-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:c2415d9d082152460f2bd4e382a1e85aed233abc92db5a3880da2257dc7daf7b"}, + {file = "Brotli-1.0.9-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5913a1177fc36e30fcf6dc868ce23b0453952c78c04c266d3149b3d39e1410d6"}, + {file = "Brotli-1.0.9-cp27-cp27m-win32.whl", hash = "sha256:afde17ae04d90fbe53afb628f7f2d4ca022797aa093e809de5c3cf276f61bbfa"}, + {file = "Brotli-1.0.9-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7cb81373984cc0e4682f31bc3d6be9026006d96eecd07ea49aafb06897746452"}, + {file = "Brotli-1.0.9-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:db844eb158a87ccab83e868a762ea8024ae27337fc7ddcbfcddd157f841fdfe7"}, + {file = "Brotli-1.0.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9744a863b489c79a73aba014df554b0e7a0fc44ef3f8a0ef2a52919c7d155031"}, + {file = "Brotli-1.0.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a72661af47119a80d82fa583b554095308d6a4c356b2a554fdc2799bc19f2a43"}, + {file = "Brotli-1.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ee83d3e3a024a9618e5be64648d6d11c37047ac48adff25f12fa4226cf23d1c"}, + {file = "Brotli-1.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:19598ecddd8a212aedb1ffa15763dd52a388518c4550e615aed88dc3753c0f0c"}, + {file = "Brotli-1.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:44bb8ff420c1d19d91d79d8c3574b8954288bdff0273bf788954064d260d7ab0"}, + {file = "Brotli-1.0.9-cp310-cp310-win32.whl", hash = "sha256:26d168aac4aaec9a4394221240e8a5436b5634adc3cd1cdf637f6645cecbf181"}, + {file = "Brotli-1.0.9-cp310-cp310-win_amd64.whl", hash = "sha256:622a231b08899c864eb87e85f81c75e7b9ce05b001e59bbfbf43d4a71f5f32b2"}, + {file = "Brotli-1.0.9-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:c83aa123d56f2e060644427a882a36b3c12db93727ad7a7b9efd7d7f3e9cc2c4"}, + {file = "Brotli-1.0.9-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:6b2ae9f5f67f89aade1fab0f7fd8f2832501311c363a21579d02defa844d9296"}, + {file = "Brotli-1.0.9-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:68715970f16b6e92c574c30747c95cf8cf62804569647386ff032195dc89a430"}, + {file = "Brotli-1.0.9-cp35-cp35m-win32.whl", hash = "sha256:defed7ea5f218a9f2336301e6fd379f55c655bea65ba2476346340a0ce6f74a1"}, + {file = "Brotli-1.0.9-cp35-cp35m-win_amd64.whl", hash = "sha256:88c63a1b55f352b02c6ffd24b15ead9fc0e8bf781dbe070213039324922a2eea"}, + {file = "Brotli-1.0.9-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:503fa6af7da9f4b5780bb7e4cbe0c639b010f12be85d02c99452825dd0feef3f"}, + {file = "Brotli-1.0.9-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:40d15c79f42e0a2c72892bf407979febd9cf91f36f495ffb333d1d04cebb34e4"}, + {file = "Brotli-1.0.9-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:93130612b837103e15ac3f9cbacb4613f9e348b58b3aad53721d92e57f96d46a"}, + {file = "Brotli-1.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87fdccbb6bb589095f413b1e05734ba492c962b4a45a13ff3408fa44ffe6479b"}, + {file = "Brotli-1.0.9-cp36-cp36m-win32.whl", hash = "sha256:61a7ee1f13ab913897dac7da44a73c6d44d48a4adff42a5701e3239791c96e14"}, + {file = "Brotli-1.0.9-cp36-cp36m-win_amd64.whl", hash = "sha256:1c48472a6ba3b113452355b9af0a60da5c2ae60477f8feda8346f8fd48e3e87c"}, + {file = "Brotli-1.0.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b78a24b5fd13c03ee2b7b86290ed20efdc95da75a3557cc06811764d5ad1126"}, + {file = "Brotli-1.0.9-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:9d12cf2851759b8de8ca5fde36a59c08210a97ffca0eb94c532ce7b17c6a3d1d"}, + {file = "Brotli-1.0.9-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:6c772d6c0a79ac0f414a9f8947cc407e119b8598de7621f39cacadae3cf57d12"}, + {file = "Brotli-1.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29d1d350178e5225397e28ea1b7aca3648fcbab546d20e7475805437bfb0a130"}, + {file = "Brotli-1.0.9-cp37-cp37m-win32.whl", hash = "sha256:f909bbbc433048b499cb9db9e713b5d8d949e8c109a2a548502fb9aa8630f0b1"}, + {file = "Brotli-1.0.9-cp37-cp37m-win_amd64.whl", hash = "sha256:97f715cf371b16ac88b8c19da00029804e20e25f30d80203417255d239f228b5"}, + {file = "Brotli-1.0.9-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e16eb9541f3dd1a3e92b89005e37b1257b157b7256df0e36bd7b33b50be73bcb"}, + {file = "Brotli-1.0.9-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:160c78292e98d21e73a4cc7f76a234390e516afcd982fa17e1422f7c6a9ce9c8"}, + {file = "Brotli-1.0.9-cp38-cp38-manylinux1_i686.whl", hash = "sha256:b663f1e02de5d0573610756398e44c130add0eb9a3fc912a09665332942a2efb"}, + {file = "Brotli-1.0.9-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:5b6ef7d9f9c38292df3690fe3e302b5b530999fa90014853dcd0d6902fb59f26"}, + {file = "Brotli-1.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a674ac10e0a87b683f4fa2b6fa41090edfd686a6524bd8dedbd6138b309175c"}, + {file = "Brotli-1.0.9-cp38-cp38-win32.whl", hash = "sha256:35a3edbe18e876e596553c4007a087f8bcfd538f19bc116917b3c7522fca0429"}, + {file = "Brotli-1.0.9-cp38-cp38-win_amd64.whl", hash = "sha256:269a5743a393c65db46a7bb982644c67ecba4b8d91b392403ad8a861ba6f495f"}, + {file = "Brotli-1.0.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2aad0e0baa04517741c9bb5b07586c642302e5fb3e75319cb62087bd0995ab19"}, + {file = "Brotli-1.0.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5cb1e18167792d7d21e21365d7650b72d5081ed476123ff7b8cac7f45189c0c7"}, + {file = "Brotli-1.0.9-cp39-cp39-manylinux1_i686.whl", hash = "sha256:16d528a45c2e1909c2798f27f7bf0a3feec1dc9e50948e738b961618e38b6a7b"}, + {file = "Brotli-1.0.9-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:56d027eace784738457437df7331965473f2c0da2c70e1a1f6fdbae5402e0389"}, + {file = "Brotli-1.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9bf919756d25e4114ace16a8ce91eb340eb57a08e2c6950c3cebcbe3dff2a5e7"}, + {file = "Brotli-1.0.9-cp39-cp39-win32.whl", hash = "sha256:cfc391f4429ee0a9370aa93d812a52e1fee0f37a81861f4fdd1f4fb28e8547c3"}, + {file = "Brotli-1.0.9-cp39-cp39-win_amd64.whl", hash = "sha256:854c33dad5ba0fbd6ab69185fec8dab89e13cda6b7d191ba111987df74f38761"}, + {file = "Brotli-1.0.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9749a124280a0ada4187a6cfd1ffd35c350fb3af79c706589d98e088c5044267"}, + {file = "Brotli-1.0.9-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:76ffebb907bec09ff511bb3acc077695e2c32bc2142819491579a695f77ffd4d"}, + {file = "Brotli-1.0.9.zip", hash = "sha256:4d1b810aa0ed773f81dceda2cc7b403d01057458730e309856356d4ef4188438"}, +] +click = [ + {file = "click-8.0.3-py3-none-any.whl", hash = "sha256:353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3"}, + {file = "click-8.0.3.tar.gz", hash = "sha256:410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b"}, +] +colorama = [ + {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, + {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"}, +] +dash = [ + {file = "dash-2.0.0-py3-none-any.whl", hash = "sha256:23f331533663641a5c70a15c46da26d29ef5335f9aeb8bc03d09de865fc7cd62"}, + {file = "dash-2.0.0.tar.gz", hash = "sha256:29277c24e2f795b069cb102ce1ab0cd3ad5cf9d3b4fd16c03da9671a5eea28a4"}, +] +dash-core-components = [ + {file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"}, +] +dash-html-components = [ + {file = "dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"}, +] +dash-table = [ + {file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"}, +] +fastapi = [ + {file = "fastapi-0.70.0-py3-none-any.whl", hash = "sha256:a36d5f2fad931aa3575c07a3472c784e81f3e664e3bb5c8b9c88d0ec1104f59c"}, + {file = "fastapi-0.70.0.tar.gz", hash = "sha256:66da43cfe5185ea1df99552acffd201f1832c6b364e0f4136c0a99f933466ced"}, +] +flask = [ + {file = "Flask-2.0.2-py3-none-any.whl", hash = "sha256:cb90f62f1d8e4dc4621f52106613488b5ba826b2e1e10a33eac92f723093ab6a"}, + {file = "Flask-2.0.2.tar.gz", hash = "sha256:7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2"}, +] +flask-compress = [ + {file = "Flask-Compress-1.10.1.tar.gz", hash = "sha256:28352387efbbe772cfb307570019f81957a13ff718d994a9125fa705efb73680"}, + {file = "Flask_Compress-1.10.1-py3-none-any.whl", hash = "sha256:a6c2d1ff51771e9b39d7a612754f4cb4e8af20cebe16b02fd19d98d8dd6966e5"}, +] +h11 = [ + {file = "h11-0.12.0-py3-none-any.whl", hash = "sha256:36a3cb8c0a032f56e2da7084577878a035d3b61d104230d4bd49c0c6b555a9c6"}, + {file = "h11-0.12.0.tar.gz", hash = "sha256:47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042"}, +] +idna = [ + {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, + {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, +] +itsdangerous = [ + {file = "itsdangerous-2.0.1-py3-none-any.whl", hash = "sha256:5174094b9637652bdb841a3029700391451bd092ba3db90600dea710ba28e97c"}, + {file = "itsdangerous-2.0.1.tar.gz", hash = "sha256:9e724d68fc22902a1435351f84c3fb8623f303fffcc566a4cb952df8c572cff0"}, +] +jinja2 = [ + {file = "Jinja2-3.0.3-py3-none-any.whl", hash = "sha256:077ce6014f7b40d03b47d1f1ca4b0fc8328a692bd284016f806ed0eaca390ad8"}, + {file = "Jinja2-3.0.3.tar.gz", hash = "sha256:611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7"}, +] +markupsafe = [ + {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4dc8f9fb58f7364b63fd9f85013b780ef83c11857ae79f2feda41e270468dd9b"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20dca64a3ef2d6e4d5d615a3fd418ad3bde77a47ec8a23d984a12b5b4c74491a"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cdfba22ea2f0029c9261a4bd07e830a8da012291fbe44dc794e488b6c9bb353a"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-win32.whl", hash = "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28"}, + {file = "MarkupSafe-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:deb993cacb280823246a026e3b2d81c493c53de6acfd5e6bfe31ab3402bb37dd"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8d206346619592c6200148b01a2142798c989edcb9c896f9ac9722a99d4e77e6"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d"}, + {file = "MarkupSafe-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d6c7ebd4e944c85e2c3421e612a7057a2f48d478d79e61800d81468a8d842207"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:89c687013cb1cd489a0f0ac24febe8c7a666e6e221b783e53ac50ebf68e45d86"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415"}, + {file = "MarkupSafe-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aca6377c0cb8a8253e493c6b451565ac77e98c2951c45f913e0b52facdcff83f"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:04635854b943835a6ea959e948d19dcd311762c5c0c6e1f0e16ee57022669194"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-win32.whl", hash = "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64"}, + {file = "MarkupSafe-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_i686.whl", hash = "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-win32.whl", hash = "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74"}, + {file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"}, + {file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"}, +] +mypy-extensions = [ + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, +] +numpy = [ + {file = "numpy-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38e8648f9449a549a7dfe8d8755a5979b45b3538520d1e735637ef28e8c2dc50"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fd7d7409fa643a91d0a05c7554dd68aa9c9bb16e186f6ccfe40d6e003156e33a"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a75b4498b1e93d8b700282dc8e655b8bd559c0904b3910b144646dbbbc03e062"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1412aa0aec3e00bc23fbb8664d76552b4efde98fb71f60737c83efbac24112f1"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e46ceaff65609b5399163de5893d8f2a82d3c77d5e56d976c8b5fb01faa6b671"}, + {file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6a2324085dd52f96498419ba95b5777e40b6bcbc20088fddb9e8cbb58885e8e"}, + {file = "numpy-1.21.1-cp37-cp37m-win32.whl", hash = "sha256:73101b2a1fef16602696d133db402a7e7586654682244344b8329cdcbbb82172"}, + {file = "numpy-1.21.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7a708a79c9a9d26904d1cca8d383bf869edf6f8e7650d85dbc77b041e8c5a0f8"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95b995d0c413f5d0428b3f880e8fe1660ff9396dcd1f9eedbc311f37b5652e16"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:635e6bd31c9fb3d475c8f44a089569070d10a9ef18ed13738b03049280281267"}, + {file = "numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a3d5fb89bfe21be2ef47c0614b9c9c707b7362386c9a3ff1feae63e0267ccb6"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a326af80e86d0e9ce92bcc1e65c8ff88297de4fa14ee936cb2293d414c9ec63"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:791492091744b0fe390a6ce85cc1bf5149968ac7d5f0477288f78c89b385d9af"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0318c465786c1f63ac05d7c4dbcecd4d2d7e13f0959b01b534ea1e92202235c5"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a513bd9c1551894ee3d31369f9b07460ef223694098cf27d399513415855b68"}, + {file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91c6f5fc58df1e0a3cc0c3a717bb3308ff850abdaa6d2d802573ee2b11f674a8"}, + {file = "numpy-1.21.1-cp38-cp38-win32.whl", hash = "sha256:978010b68e17150db8765355d1ccdd450f9fc916824e8c4e35ee620590e234cd"}, + {file = "numpy-1.21.1-cp38-cp38-win_amd64.whl", hash = "sha256:9749a40a5b22333467f02fe11edc98f022133ee1bfa8ab99bda5e5437b831214"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d7a4aeac3b94af92a9373d6e77b37691b86411f9745190d2c351f410ab3a791f"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9e7912a56108aba9b31df688a4c4f5cb0d9d3787386b87d504762b6754fbb1b"}, + {file = "numpy-1.21.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:25b40b98ebdd272bc3020935427a4530b7d60dfbe1ab9381a39147834e985eac"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a92c5aea763d14ba9d6475803fc7904bda7decc2a0a68153f587ad82941fec1"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05a0f648eb28bae4bcb204e6fd14603de2908de982e761a2fc78efe0f19e96e1"}, + {file = "numpy-1.21.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01f28075a92eede918b965e86e8f0ba7b7797a95aa8d35e1cc8821f5fc3ad6a"}, + {file = "numpy-1.21.1-cp39-cp39-win32.whl", hash = "sha256:88c0b89ad1cc24a5efbb99ff9ab5db0f9a86e9cc50240177a571fbe9c2860ac2"}, + {file = "numpy-1.21.1-cp39-cp39-win_amd64.whl", hash = "sha256:01721eefe70544d548425a07c80be8377096a54118070b8a62476866d5208e33"}, + {file = "numpy-1.21.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d4d1de6e6fb3d28781c73fbde702ac97f03d79e4ffd6598b880b2d95d62ead4"}, + {file = "numpy-1.21.1.zip", hash = "sha256:dff4af63638afcc57a3dfb9e4b26d434a7a602d225b42d746ea7fe2edf1342fd"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8890b3360f345e8360133bc078d2dacc2843b6ee6059b568781b15b97acbe39f"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69077388c5a4b997442b843dbdc3a85b420fb693ec8e33020bb24d647c164fa5"}, + {file = "numpy-1.21.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e89717274b41ebd568cd7943fc9418eeb49b1785b66031bc8a7f6300463c5898"}, + {file = "numpy-1.21.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b78ecfa070460104934e2caf51694ccd00f37d5e5dbe76f021b1b0b0d221823"}, + {file = "numpy-1.21.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:615d4e328af7204c13ae3d4df7615a13ff60a49cb0d9106fde07f541207883ca"}, + {file = "numpy-1.21.4-cp310-cp310-win_amd64.whl", hash = "sha256:1403b4e2181fc72664737d848b60e65150f272fe5a1c1cbc16145ed43884065a"}, + {file = "numpy-1.21.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74b85a17528ca60cf98381a5e779fc0264b4a88b46025e6bcbe9621f46bb3e63"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:92aafa03da8658609f59f18722b88f0a73a249101169e28415b4fa148caf7e41"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5d95668e727c75b3f5088ec7700e260f90ec83f488e4c0aaccb941148b2cd377"}, + {file = "numpy-1.21.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5162ec777ba7138906c9c274353ece5603646c6965570d82905546579573f73"}, + {file = "numpy-1.21.4-cp37-cp37m-win32.whl", hash = "sha256:81225e58ef5fce7f1d80399575576fc5febec79a8a2742e8ef86d7b03beef49f"}, + {file = "numpy-1.21.4-cp37-cp37m-win_amd64.whl", hash = "sha256:32fe5b12061f6446adcbb32cf4060a14741f9c21e15aaee59a207b6ce6423469"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c449eb870616a7b62e097982c622d2577b3dbc800aaf8689254ec6e0197cbf1e"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2e4ed57f45f0aa38beca2a03b6532e70e548faf2debbeb3291cfc9b315d9be8f"}, + {file = "numpy-1.21.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1247ef28387b7bb7f21caf2dbe4767f4f4175df44d30604d42ad9bd701ebb31f"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34f3456f530ae8b44231c63082c8899fe9c983fd9b108c997c4b1c8c2d435333"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c9c23158b87ed0e70d9a50c67e5c0b3f75bcf2581a8e34668d4e9d7474d76c6"}, + {file = "numpy-1.21.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4799be6a2d7d3c33699a6f77201836ac975b2e1b98c2a07f66a38f499cb50ce"}, + {file = "numpy-1.21.4-cp38-cp38-win32.whl", hash = "sha256:bc988afcea53e6156546e5b2885b7efab089570783d9d82caf1cfd323b0bb3dd"}, + {file = "numpy-1.21.4-cp38-cp38-win_amd64.whl", hash = "sha256:170b2a0805c6891ca78c1d96ee72e4c3ed1ae0a992c75444b6ab20ff038ba2cd"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fde96af889262e85aa033f8ee1d3241e32bf36228318a61f1ace579df4e8170d"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c885bfc07f77e8fee3dc879152ba993732601f1f11de248d4f357f0ffea6a6d4"}, + {file = "numpy-1.21.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e6f5f50d1eff2f2f752b3089a118aee1ea0da63d56c44f3865681009b0af162"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ad010846cdffe7ec27e3f933397f8a8d6c801a48634f419e3d075db27acf5880"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c74c699b122918a6c4611285cc2cad4a3aafdb135c22a16ec483340ef97d573c"}, + {file = "numpy-1.21.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9864424631775b0c052f3bd98bc2712d131b3e2cd95d1c0c68b91709170890b0"}, + {file = "numpy-1.21.4-cp39-cp39-win32.whl", hash = "sha256:b1e2312f5b8843a3e4e8224b2b48fe16119617b8fc0a54df8f50098721b5bed2"}, + {file = "numpy-1.21.4-cp39-cp39-win_amd64.whl", hash = "sha256:e3c3e990274444031482a31280bf48674441e0a5b55ddb168f3a6db3e0c38ec8"}, + {file = "numpy-1.21.4-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a3deb31bc84f2b42584b8c4001c85d1934dbfb4030827110bc36bfd11509b7bf"}, + {file = "numpy-1.21.4.zip", hash = "sha256:e6c76a87633aa3fa16614b61ccedfae45b91df2767cf097aa9c933932a7ed1e0"}, +] +pandas = [ + {file = "pandas-1.3.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:9707bdc1ea9639c886b4d3be6e2a45812c1ac0c2080f94c31b71c9fa35556f9b"}, + {file = "pandas-1.3.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c2f44425594ae85e119459bb5abb0748d76ef01d9c08583a667e3339e134218e"}, + {file = "pandas-1.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:372d72a3d8a5f2dbaf566a5fa5fa7f230842ac80f29a931fb4b071502cf86b9a"}, + {file = "pandas-1.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d99d2350adb7b6c3f7f8f0e5dfb7d34ff8dd4bc0a53e62c445b7e43e163fce63"}, + {file = "pandas-1.3.4-cp310-cp310-win_amd64.whl", hash = "sha256:4acc28364863127bca1029fb72228e6f473bb50c32e77155e80b410e2068eeac"}, + {file = "pandas-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c2646458e1dce44df9f71a01dc65f7e8fa4307f29e5c0f2f92c97f47a5bf22f5"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5298a733e5bfbb761181fd4672c36d0c627320eb999c59c65156c6a90c7e1b4f"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22808afb8f96e2269dcc5b846decacb2f526dd0b47baebc63d913bf847317c8f"}, + {file = "pandas-1.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b528e126c13816a4374e56b7b18bfe91f7a7f6576d1aadba5dee6a87a7f479ae"}, + {file = "pandas-1.3.4-cp37-cp37m-win32.whl", hash = "sha256:fe48e4925455c964db914b958f6e7032d285848b7538a5e1b19aeb26ffaea3ec"}, + {file = "pandas-1.3.4-cp37-cp37m-win_amd64.whl", hash = "sha256:eaca36a80acaacb8183930e2e5ad7f71539a66805d6204ea88736570b2876a7b"}, + {file = "pandas-1.3.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:42493f8ae67918bf129869abea8204df899902287a7f5eaf596c8e54e0ac7ff4"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a388960f979665b447f0847626e40f99af8cf191bce9dc571d716433130cb3a7"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ba0aac1397e1d7b654fccf263a4798a9e84ef749866060d19e577e927d66e1b"}, + {file = "pandas-1.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f567e972dce3bbc3a8076e0b675273b4a9e8576ac629149cf8286ee13c259ae5"}, + {file = "pandas-1.3.4-cp38-cp38-win32.whl", hash = "sha256:c1aa4de4919358c5ef119f6377bc5964b3a7023c23e845d9db7d9016fa0c5b1c"}, + {file = "pandas-1.3.4-cp38-cp38-win_amd64.whl", hash = "sha256:dd324f8ee05925ee85de0ea3f0d66e1362e8c80799eb4eb04927d32335a3e44a"}, + {file = "pandas-1.3.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d47750cf07dee6b55d8423471be70d627314277976ff2edd1381f02d52dbadf9"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d1dc09c0013d8faa7474574d61b575f9af6257ab95c93dcf33a14fd8d2c1bab"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10e10a2527db79af6e830c3d5842a4d60383b162885270f8cffc15abca4ba4a9"}, + {file = "pandas-1.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35c77609acd2e4d517da41bae0c11c70d31c87aae8dd1aabd2670906c6d2c143"}, + {file = "pandas-1.3.4-cp39-cp39-win32.whl", hash = "sha256:003ba92db58b71a5f8add604a17a059f3068ef4e8c0c365b088468d0d64935fd"}, + {file = "pandas-1.3.4-cp39-cp39-win_amd64.whl", hash = "sha256:a51528192755f7429c5bcc9e80832c517340317c861318fea9cea081b57c9afd"}, + {file = "pandas-1.3.4.tar.gz", hash = "sha256:a2aa18d3f0b7d538e21932f637fbfe8518d085238b429e4790a35e1e44a96ffc"}, +] +pathspec = [ + {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, + {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, +] +platformdirs = [ + {file = "platformdirs-2.4.0-py3-none-any.whl", hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d"}, + {file = "platformdirs-2.4.0.tar.gz", hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2"}, +] +plotly = [ + {file = "plotly-5.4.0-py2.py3-none-any.whl", hash = "sha256:1e5c1a5c87caaf68ce0d9872d4636e3ce1f82c7f6988eb20905ff5b58e57525c"}, + {file = "plotly-5.4.0.tar.gz", hash = "sha256:735d50738c760ecbf3a38e2336b8c1b119bff2d857096e4f68af31089b798161"}, +] +pydantic = [ + {file = "pydantic-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:05ddfd37c1720c392f4e0d43c484217b7521558302e7069ce8d318438d297739"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:a7c6002203fe2c5a1b5cbb141bb85060cbff88c2d78eccbc72d97eb7022c43e4"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:589eb6cd6361e8ac341db97602eb7f354551482368a37f4fd086c0733548308e"}, + {file = "pydantic-1.8.2-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:10e5622224245941efc193ad1d159887872776df7a8fd592ed746aa25d071840"}, + {file = "pydantic-1.8.2-cp36-cp36m-win_amd64.whl", hash = "sha256:99a9fc39470010c45c161a1dc584997f1feb13f689ecf645f59bb4ba623e586b"}, + {file = "pydantic-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a83db7205f60c6a86f2c44a61791d993dff4b73135df1973ecd9eed5ea0bda20"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:41b542c0b3c42dc17da70554bc6f38cbc30d7066d2c2815a94499b5684582ecb"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:ea5cb40a3b23b3265f6325727ddfc45141b08ed665458be8c6285e7b85bd73a1"}, + {file = "pydantic-1.8.2-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:18b5ea242dd3e62dbf89b2b0ec9ba6c7b5abaf6af85b95a97b00279f65845a23"}, + {file = "pydantic-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:234a6c19f1c14e25e362cb05c68afb7f183eb931dd3cd4605eafff055ebbf287"}, + {file = "pydantic-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:021ea0e4133e8c824775a0cfe098677acf6fa5a3cbf9206a376eed3fc09302cd"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:e710876437bc07bd414ff453ac8ec63d219e7690128d925c6e82889d674bb505"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:ac8eed4ca3bd3aadc58a13c2aa93cd8a884bcf21cb019f8cfecaae3b6ce3746e"}, + {file = "pydantic-1.8.2-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:4a03cbbe743e9c7247ceae6f0d8898f7a64bb65800a45cbdc52d65e370570820"}, + {file = "pydantic-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:8621559dcf5afacf0069ed194278f35c255dc1a1385c28b32dd6c110fd6531b3"}, + {file = "pydantic-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8b223557f9510cf0bfd8b01316bf6dd281cf41826607eada99662f5e4963f316"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux1_i686.whl", hash = "sha256:244ad78eeb388a43b0c927e74d3af78008e944074b7d0f4f696ddd5b2af43c62"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:05ef5246a7ffd2ce12a619cbb29f3307b7c4509307b1b49f456657b43529dc6f"}, + {file = "pydantic-1.8.2-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:54cd5121383f4a461ff7644c7ca20c0419d58052db70d8791eacbbe31528916b"}, + {file = "pydantic-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:4be75bebf676a5f0f87937c6ddb061fa39cbea067240d98e298508c1bda6f3f3"}, + {file = "pydantic-1.8.2-py3-none-any.whl", hash = "sha256:fec866a0b59f372b7e776f2d7308511784dace622e0992a0b59ea3ccee0ae833"}, + {file = "pydantic-1.8.2.tar.gz", hash = "sha256:26464e57ccaafe72b7ad156fdaa4e9b9ef051f69e175dbbb463283000c05ab7b"}, +] +python-dateutil = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] +pytz = [ + {file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"}, + {file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"}, +] +six = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] +sniffio = [ + {file = "sniffio-1.2.0-py3-none-any.whl", hash = "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663"}, + {file = "sniffio-1.2.0.tar.gz", hash = "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de"}, +] +starlette = [ + {file = "starlette-0.16.0-py3-none-any.whl", hash = "sha256:38eb24bf705a2c317e15868e384c1b8a12ca396e5a3c3a003db7e667c43f939f"}, + {file = "starlette-0.16.0.tar.gz", hash = "sha256:e1904b5d0007aee24bdd3c43994be9b3b729f4f58e740200de1d623f8c3a8870"}, +] +tenacity = [ + {file = "tenacity-8.0.1-py3-none-any.whl", hash = "sha256:f78f4ea81b0fabc06728c11dc2a8c01277bfc5181b321a4770471902e3eb844a"}, + {file = "tenacity-8.0.1.tar.gz", hash = "sha256:43242a20e3e73291a28bcbcacfd6e000b02d3857a9a9fff56b297a27afdc932f"}, +] +tomli = [ + {file = "tomli-1.2.2-py3-none-any.whl", hash = "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade"}, + {file = "tomli-1.2.2.tar.gz", hash = "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee"}, +] +typing-extensions = [ + {file = "typing_extensions-4.0.1-py3-none-any.whl", hash = "sha256:7f001e5ac290a0c0401508864c7ec868be4e701886d5b573a9528ed3973d9d3b"}, + {file = "typing_extensions-4.0.1.tar.gz", hash = "sha256:4ca091dea149f945ec56afb48dae714f21e8692ef22a395223bcd328961b6a0e"}, +] +uvicorn = [ + {file = "uvicorn-0.16.0-py3-none-any.whl", hash = "sha256:d8c839231f270adaa6d338d525e2652a0b4a5f4c2430b5c4ef6ae4d11776b0d2"}, + {file = "uvicorn-0.16.0.tar.gz", hash = "sha256:eacb66afa65e0648fcbce5e746b135d09722231ffffc61883d4fac2b62fbea8d"}, +] +werkzeug = [ + {file = "Werkzeug-2.0.2-py3-none-any.whl", hash = "sha256:63d3dc1cf60e7b7e35e97fa9861f7397283b75d765afcaefd993d6046899de8f"}, + {file = "Werkzeug-2.0.2.tar.gz", hash = "sha256:aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a"}, +] diff --git a/fastapi-plotly-dash-master/pyproject.toml b/fastapi-plotly-dash-master/pyproject.toml new file mode 100644 index 0000000..e5c8487 --- /dev/null +++ b/fastapi-plotly-dash-master/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "fastapi-plotly-dash" +version = "0.1.0" +description = "Sample integration of FastAPI and Dash" +authors = ["Russ Snyder "] + +[tool.poetry.dependencies] +python = "^3.8" + +dash = "^2.0.0" +fastapi = "*" +pandas = "*" +uvicorn = "*" + +[tool.poetry.dev-dependencies] +black = "*" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" + diff --git a/peotry.txt b/peotry.txt new file mode 100644 index 0000000..fa43f7e --- /dev/null +++ b/peotry.txt @@ -0,0 +1,6 @@ +https://blog.csdn.net/not_so_bad/article/details/127705403 +安装 + +pip install pipx +pipx install poetry +pipx ensurepath \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1786a3d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "pythonbook" +version = "0.1.0" +description = "" +authors = ["13002457275 <4448445@qq.com>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/python_advance-main/README.md b/python_advance-main/README.md new file mode 100644 index 0000000..1b0b8d3 --- /dev/null +++ b/python_advance-main/README.md @@ -0,0 +1 @@ +# python_advance diff --git a/python_advance-main/advancedthread/__main__.py b/python_advance-main/advancedthread/__main__.py new file mode 100644 index 0000000..1b92de0 --- /dev/null +++ b/python_advance-main/advancedthread/__main__.py @@ -0,0 +1,69 @@ +import time +from threading import Thread +from queue import Queue + + +class MyThread(Thread): + def __init__(self, name: str, count: int): + super().__init__() + + self.setName(name) + self.setDaemon(True) + self.count = count + + def run(self) -> None: + for n in range(self.count): + print(f"{self.getName()} - {n}\n", end='') + time.sleep(0.01) + + +t_1 = MyThread("A", 10) +t_2 = MyThread("B", 10) + +t_1.start() +t_2.start() + +t_1.join() + + +class MsgProducer(Thread): + def __init__(self, name: str, count: int, queue: Queue): + super().__init__() + + self.setName(name) + self.count = count + self.queue = queue + + def run(self) -> None: + for n in range(self.count): + msg = f"{self.getName()} - {n}" + self.queue.put(msg, block=True) + + +class MsgConsumer(Thread): + def __init__(self, name: str, queue: Queue): + super().__init__() + + self.setName(name) + self.queue = queue + self.setDaemon(True) + + def run(self) -> None: + while True: + msg = self.queue.get(block=True) + print(f"{self.getName()} - {msg}\n", end='') + + +queue = Queue(3) +threads = list() +threads.append(MsgProducer("PA", 10, queue)) +threads.append(MsgProducer("PB", 10, queue)) +threads.append(MsgProducer("PC", 10, queue)) + +threads.append(MsgConsumer("CA", queue)) +threads.append(MsgConsumer("CB", queue)) + +for t in threads: + t.start() + + diff --git a/python_advance-main/asyncio_advancedtask/__main__.py b/python_advance-main/asyncio_advancedtask/__main__.py new file mode 100644 index 0000000..57f2709 --- /dev/null +++ b/python_advance-main/asyncio_advancedtask/__main__.py @@ -0,0 +1,57 @@ +import asyncio +from asyncio.exceptions import TimeoutError + + +async def play_music(music: str): + print(f"Start playing {music}") + await asyncio.sleep(3) + print(f"Finished playing {music}") + + return music + + +async def call_api(): + print("calling api.....") + raise Exception("Error calling") + + +async def my_cancel(): + task = asyncio.create_task(play_music("A")) + + await asyncio.sleep(3) + + if not task.done(): + task.cancel() + + +async def my_cancel_with_timeout(): + task = asyncio.create_task(play_music("B")) + + try: + await asyncio.wait_for(task, timeout=2) + except TimeoutError: + print("timeout") + + +async def my_timeout(): + task = asyncio.create_task(play_music("B")) + + try: + await asyncio.wait_for(asyncio.shield(task), timeout=2) + except TimeoutError: + print("timeout") + await task + + +async def my_gather(): + results = await asyncio.gather(play_music("A"), play_music("B")) + print(results) + + +async def my_gather_with_exception(): + results = await asyncio.gather(play_music("A"), play_music("B"), call_api(), + return_exceptions=True) + print(results) + +if __name__ == "__main__": + asyncio.run(my_gather_with_exception()) diff --git a/python_advance-main/asyncio_basic/__main__.py b/python_advance-main/asyncio_basic/__main__.py new file mode 100644 index 0000000..3b6449b --- /dev/null +++ b/python_advance-main/asyncio_basic/__main__.py @@ -0,0 +1,15 @@ +import asyncio + + +async def calculate(n_1: int, n_2: int): + res = n_1 + n_2 + print(res) + + +async def main(): + print("main -step 1") + await calculate(1, 2) + print("main -step 2") + + +asyncio.run(main()) diff --git a/python_advance-main/asyncio_task/__main__.py b/python_advance-main/asyncio_task/__main__.py new file mode 100644 index 0000000..194e009 --- /dev/null +++ b/python_advance-main/asyncio_task/__main__.py @@ -0,0 +1,28 @@ +import asyncio +import time + + +async def call_api(name: str, delay: float): + print(f"{name} - step 1") + await asyncio.sleep(delay) + print(f"{name} - step 2") + + +async def main(): + time_1 = time.perf_counter() + print("start A coroutine") + task_1 = asyncio.create_task(call_api("A", 2)) + + print("start B coroutine") + task_2 = asyncio.create_task(call_api("B", 5)) + + await task_1 + print("task 1 completed") + await task_2 + print("task 2 completed") + + time_2 = time.perf_counter() + print(f"Spent {time_2 - time_1}") + + +asyncio.run(main()) diff --git a/python_advance-main/classdecorator/__main__.py b/python_advance-main/classdecorator/__main__.py new file mode 100644 index 0000000..d814697 --- /dev/null +++ b/python_advance-main/classdecorator/__main__.py @@ -0,0 +1,52 @@ +class MyDecorator: + def __init__(self, f): + self.f = f + + def __call__(self, *args, **kwargs): + print("start") + result = self.f(*args, **kwargs) + print("end") + return result + + +class ParamDecorator: + def __init__(self, name): + self.name = name + + def __call__(self, f): + def wrap(*args): + print(f"start {self.name}") + result = f(*args) + print("end") + return result + + return wrap + + +@ParamDecorator("Jack") +def test(): + print("test") + return 200 + + +print(test()) + + +def cls_decorator(cls): + print("start class decorator") + + def inner(): + print("start") + obj = cls() + print("end") + return obj + + return inner + + +@cls_decorator +class Person: + pass + +p1 = Person() +p2 = Person() diff --git a/python_advance-main/closure/__main__.py b/python_advance-main/closure/__main__.py new file mode 100644 index 0000000..aaad7b1 --- /dev/null +++ b/python_advance-main/closure/__main__.py @@ -0,0 +1,15 @@ +def greeting(): + message = "hello" + value = 20 + + def inner(): + print(f'{value} - {message}') + + message = "second" + + return inner + + +f = greeting() +print(f.__closure__) +f() diff --git a/python_advance-main/contextmanager/__main__.py b/python_advance-main/contextmanager/__main__.py new file mode 100644 index 0000000..05ed3ab --- /dev/null +++ b/python_advance-main/contextmanager/__main__.py @@ -0,0 +1,34 @@ +# instance = open("mydata.txt", "w") +# instance.write("Hello this is a test file") +# instance.close() + +# with open("mydata.txt", "w") as instance: +# instance.write("Hello this is a test file") +# +# +# print("The end") +import time + + +class Timer: + def __init__(self): + self.elapsed = 0 + + def __enter__(self): + self.start = time.perf_counter() + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + self.stop = time.perf_counter() + self.elapsed = self.stop - self.start + return False + + +with Timer() as timer: + nums = [] + for n in range(10000): + nums.append(n ** 2) + +print(timer.elapsed) + + diff --git a/python_advance-main/dataclass/__main__.py b/python_advance-main/dataclass/__main__.py new file mode 100644 index 0000000..28787de --- /dev/null +++ b/python_advance-main/dataclass/__main__.py @@ -0,0 +1,31 @@ +import operator +from dataclasses import dataclass, field + + +@dataclass(order=True) +class Student: + sort_index: int = field(init=False, repr=False) + + name: str + age: int = 19 + independent: bool = field(default=False, init=False, repr=True) + + def __post_init__(self): + self.independent = self.age > 19 + self.sort_index = self.age + + +s_1 = Student("Jack", 20) +print(s_1) + +s_2 = Student("Tom") +print(s_2) + +print(s_1 == s_2) + +students = [s_2, s_1] +sorted_students = sorted(students) +print(sorted_students) + +students.sort(key=operator.attrgetter('name')) +print(students) diff --git a/python_advance-main/decorator/__main__.py b/python_advance-main/decorator/__main__.py new file mode 100644 index 0000000..78ef7b3 --- /dev/null +++ b/python_advance-main/decorator/__main__.py @@ -0,0 +1,40 @@ +from functools import wraps + + +# def welcome(fn): +# @wraps(fn) +# def wrapper(*args, **kwargs): +# print("Welcome") +# result = fn(*args, **kwargs) +# return result +# +# return wrapper + +def welcome(name): + def decorator(fn): + @wraps(fn) + def wrapper(*args, **kwargs): + print(f"Welcome {name}") + result = fn(*args, **kwargs) + return result + + return wrapper + return decorator + + +@welcome("Tom") +def my_fun(message: str): + print(f"Hello {message}") + + +@welcome("Mary") +def my_fun_2(): + print("my fun 2") + + +# f1 = welcome(my_fun) +# f1("Jack") + +my_fun("Jack") + +print(my_fun.__name__) diff --git a/python_advance-main/generator/__main__.py b/python_advance-main/generator/__main__.py new file mode 100644 index 0000000..f4f7165 --- /dev/null +++ b/python_advance-main/generator/__main__.py @@ -0,0 +1,29 @@ +def hello(): # an iteratable object + print("step 1") + yield 1 + print("step 2") + yield 2 + print("step 3") + yield 3 + + +def my_fun(): + result = [] + for n in range(3): + result.append(n ** 2) + + return result + + +g = hello() +for res in g: + print(res) + + +def squares(count: int): + for n in range(count): + yield n ** 2 + + +for num in squares(3): + print(num) diff --git a/python_advance-main/metaclass/__main__.py b/python_advance-main/metaclass/__main__.py new file mode 100644 index 0000000..685c005 --- /dev/null +++ b/python_advance-main/metaclass/__main__.py @@ -0,0 +1,17 @@ +class Human(type): + @staticmethod + def __new__(mcs, *args, **kwargs): + class_ = super().__new__(mcs, *args) + # class_.freedom = True + if kwargs: + for name, value in kwargs.items(): + setattr(class_, name, value) + return class_ + + +class Student(object, metaclass=Human, country="China", freedom=True): + pass + + +print(Student.country) +print(Student.freedom) diff --git a/python_advance-main/metaclass_sample/__main__.py b/python_advance-main/metaclass_sample/__main__.py new file mode 100644 index 0000000..e85430a --- /dev/null +++ b/python_advance-main/metaclass_sample/__main__.py @@ -0,0 +1,49 @@ +class Prop: + def __init__(self, attr): + self._attr = f'_{attr}' + + def get(self, obj): + if not hasattr(obj, self._attr): + return None + + return getattr(obj, self._attr) + + def set(self, obj, value): + setattr(obj, self._attr, value) + + +class Human(type): + @staticmethod + def __new__(mcs, *args, **kwargs): + class_ = super().__new__(mcs, *args) + for property_name in class_.props: + prop = Prop(property_name) + p_obj = property(fget=prop.get, fset=prop.set) + setattr(class_, property_name, p_obj) + + return class_ + + +class Student(object, metaclass=Human): + props = ["name", "age"] + + +def human(cls): + return Human(cls.__name__, cls.__bases__, dict(cls.__dict__)) + + +@human +class Man: + props = ["name", "age"] + + +man = Man() +print(man.name) +man.name = "Tom" +print(man.name) + + +student = Student() +print(student.name) +student.name = "Jack" +print(student.name) diff --git a/python_advance-main/mixin/__main__.py b/python_advance-main/mixin/__main__.py new file mode 100644 index 0000000..5f4b220 --- /dev/null +++ b/python_advance-main/mixin/__main__.py @@ -0,0 +1,53 @@ +import json + + +class MapMixin: + def __getitem__(self, key): + return self.__dict__[key] + + def __setitem__(self, key, value): + self.__dict__[key] = value + + +class DictMixin: + def to_dict(self): + return self.__convert_dict(self.__dict__) + + def __convert_dict(self, attrs: dict): + result = {} + for key, value in attrs.items(): + result[key] = self.__convert_value(value) + + return result + + def __convert_value(self, value): + if isinstance(value, DictMixin): + return value.to_dict() + elif isinstance(value, dict): + return self.__convert_dict(value) + elif isinstance(value, list): + return [self.__convert_value(v) for v in value] + elif hasattr(value, '__dict__'): + return self.__convert_dict(value.__dict__) + else: + return value + + +class JSONMixin: + def to_json(self): + return json.dumps(self.to_dict()) + + +class Student(MapMixin, DictMixin, JSONMixin): + def __init__(self, name, age): + self.name = name + self.age = age + +# {"name": "Jack", "age": 20, "clasx": {"name": "class 9-1", "building": "A"}} + +s = Student("Jack", 20) + +print(s["name"]) +print(s.to_dict()) +print(s.to_json()) + diff --git a/python_advance-main/multiprocesses/__main__.py b/python_advance-main/multiprocesses/__main__.py new file mode 100644 index 0000000..89aa2a8 --- /dev/null +++ b/python_advance-main/multiprocesses/__main__.py @@ -0,0 +1,42 @@ +import multiprocessing +import time + + +def task(name: str, count: int): + print(f"{name} - start\n", end='') + result = 0 + for n in range(count): + result += n + 1 + # time.sleep(1) + print(f"{name} - end with {result}") + + +def start_process_1(): + process = multiprocessing.Process(target=task, args=["A", 100]) + + process.start() + + process.join() + + print("Main process over") + + +def start_process_2(): + args_list = [("A", 1000000), ("B", 9900000), ("C", 98000)] + processes = [multiprocessing.Process(target=task, args=[name, count]) for name, count in args_list] + processes[0].start() + processes[1].start() + processes[1].join() + + # for p in processes: + # p.start() + # + # for p in processes: + # p.join() + + print("Main process over") + + + +if __name__ == "__main__": + start_process_2() diff --git a/python_advance-main/nonlocal/__main__.py b/python_advance-main/nonlocal/__main__.py new file mode 100644 index 0000000..e2f227c --- /dev/null +++ b/python_advance-main/nonlocal/__main__.py @@ -0,0 +1,19 @@ +message = "module" + + +def outer(): + message = "outer" + + def inner(): + nonlocal message + + message = "inner" + print(message) + + inner() + print(message) + + +outer() + +print(message) diff --git a/python_advance-main/processpool/__main__.py b/python_advance-main/processpool/__main__.py new file mode 100644 index 0000000..1c575b5 --- /dev/null +++ b/python_advance-main/processpool/__main__.py @@ -0,0 +1,39 @@ +import os.path +import time +from concurrent.futures import ProcessPoolExecutor +from urllib.request import urlopen, Request + + +def download_img(url: str): + site_url = Request(url, headers={"User-Agent": "Mozilla/5.0"}) + with urlopen(site_url) as web_file: + img_data = web_file.read() + + if not img_data: + raise Exception(f"Error: cannot load the image from {url}") + + file_name = os.path.basename(url) + with open(file_name, 'wb') as file: + file.write(img_data) + + return f"Download image successfully, {url}" + + +def main(): + with ProcessPoolExecutor() as executor: + urls = [ + "https://cdn.pixabay.com/photo/2021/09/28/13/14/cat-6664412_1280.jpg", + "https://cdn.pixabay.com/photo/2022/11/10/00/38/creative-7581718_640.jpg", + "https://cdn.pixabay.com/photo/2022/11/19/11/53/rose-7601873_640.jpg", + "https://cdn.pixabay.com/photo/2022/10/18/12/05/clouds-7530090_640.jpg" + ] + + results = executor.map(download_img, urls) + + for res in results: + print(res) + + +if __name__ == "__main__": + main() + diff --git a/python_advance-main/regex/__main__.py b/python_advance-main/regex/__main__.py new file mode 100644 index 0000000..de37ceb --- /dev/null +++ b/python_advance-main/regex/__main__.py @@ -0,0 +1,51 @@ +import re + + +def test_search(): + pattern = r"\d{2}" + source = "I'm 80 years old." + + result = re.search(pattern, source) + print(result) + + +def test_match(): + pattern = r"\d{2}" + source = "80 years old." + + result = re.match(pattern, source) + print(result) + + +def test_fullmatch(): + pattern = r"\d{2}" + source = "809" + + result = re.fullmatch(pattern, source) + print(result) + + +def test_findall(): + pattern = r"\d{2}" + source = "8 09 aaa 89 laskdjf" + + result = re.findall(pattern, source) + print(result) + + +def test_finditer(): + pattern = r"\d{2}" + source = "8 09 aaa 89 laskdjf" + + it = re.finditer(pattern, source) + for rs in it: + print(rs) + + +def test_compile(): + pattern_str = r"\d{2}" + pattern = re.compile(pattern_str) + print(pattern.fullmatch("99")) + + +test_compile() diff --git a/python_advance-main/singleton/__main__.py b/python_advance-main/singleton/__main__.py new file mode 100644 index 0000000..92036f2 --- /dev/null +++ b/python_advance-main/singleton/__main__.py @@ -0,0 +1,35 @@ +def singleton(cls): + _instance = {} + + def inner(*args, **kwargs): + if cls in _instance: + return _instance[cls] + + obj = cls(*args, **kwargs) + _instance[cls] = obj + + return obj + + return inner + + +class SingletonMeta(type): + def __call__(cls, *args, **kwargs): + if hasattr(cls, '_instance'): + return getattr(cls, '_instance') + + obj = super().__call__(*args, **kwargs) + setattr(cls, '_instance', obj) + + return obj + + +# @singleton +class Person(metaclass=SingletonMeta): + pass + + +p_1 = Person() +p_2 = Person() + +print(p_1 is p_2) diff --git a/python_advance-main/threadlock/__main__.py b/python_advance-main/threadlock/__main__.py new file mode 100644 index 0000000..e8df624 --- /dev/null +++ b/python_advance-main/threadlock/__main__.py @@ -0,0 +1,89 @@ +from threading import Thread, Lock, Condition + + +task_lock = Lock() + + +def task(name: str): + global task_lock + for n in range(2): + task_lock.acquire() + print(f"{name} - round {n} - step 1\n", end='') + print(f"{name} - round {n} - step 2\n", end='') + print(f"{name} - round {n} - step 3\n", end='') + task_lock.release() + + +t1 = Thread(target=task, args=("A",)) +t2 = Thread(target=task, args=("B",)) +t3 = Thread(target=task, args=("C",)) + +t1.start() +t2.start() +t3.start() + + +class SafeQueue: + def __init__(self, size: int): + self.__item_list = list() + self.size = size + self.__item_lock = Condition() + + def put(self, item): + with self.__item_lock: + while len(self.__item_list) >= self.size: + self.__item_lock.wait() + + self.__item_list.insert(0, item) + self.__item_lock.notify_all() + + def get(self): + with self.__item_lock: + while len(self.__item_list) == 0: + self.__item_lock.wait() + + result = self.__item_list.pop() + self.__item_lock.notify_all() + + return result + + +class MsgProducer(Thread): + def __init__(self, name: str, count: int, queue: SafeQueue): + super().__init__() + + self.setName(name) + self.count = count + self.queue = queue + + def run(self) -> None: + for n in range(self.count): + msg = f"{self.getName()} - {n}" + self.queue.put(msg) + + +class MsgConsumer(Thread): + def __init__(self, name: str, queue: SafeQueue): + super().__init__() + + self.setName(name) + self.queue = queue + self.setDaemon(True) + + def run(self) -> None: + while True: + msg = self.queue.get() + print(f"{self.getName()} - {msg}\n", end='') + + +queue = SafeQueue(3) +threads = list() +threads.append(MsgProducer("PA", 10, queue)) +threads.append(MsgProducer("PB", 10, queue)) +threads.append(MsgProducer("PC", 10, queue)) + +threads.append(MsgConsumer("CA", queue)) +threads.append(MsgConsumer("CB", queue)) + +for t in threads: + t.start() diff --git a/python_advance-main/threadpool/__main__.py b/python_advance-main/threadpool/__main__.py new file mode 100644 index 0000000..b9c0729 --- /dev/null +++ b/python_advance-main/threadpool/__main__.py @@ -0,0 +1,55 @@ +import os.path +import time +from concurrent.futures import ThreadPoolExecutor +from urllib.request import urlopen, Request + + +def task(name: str): + print(f"{name} - step 1\n", end='') + time.sleep(1) + print(f"{name} - step 2\n", end='') + + return f"{name} complete" + +# +# with ThreadPoolExecutor() as executor: +# result_1 = executor.submit(task, 'A') +# result_2 = executor.submit(task, 'B') +# +# print(result_1.result()) +# print(result_2.result()) +# +# with ThreadPoolExecutor() as executor: +# results = executor.map(task, ['C', 'D']) +# +# for r in results: +# print(r) + + +def download_img(url: str): + site_url = Request(url, headers={"User-Agent": "Mozilla/5.0"}) + with urlopen(site_url) as web_file: + img_data = web_file.read() + + if not img_data: + raise Exception(f"Error: cannot load the image from {url}") + + file_name = os.path.basename(url) + with open(file_name, 'wb') as file: + file.write(img_data) + + return f"Download image successfully, {url}" + + +with ThreadPoolExecutor() as executor: + urls = [ + "https://cdn.pixabay.com/photo/2021/09/28/13/14/cat-6664412_1280.jpg", + "https://cdn.pixabay.com/photo/2022/11/10/00/38/creative-7581718_640.jpg", + "https://cdn.pixabay.com/photo/2022/11/19/11/53/rose-7601873_640.jpg", + "https://cdn.pixabay.com/photo/2022/10/18/12/05/clouds-7530090_640.jpg" + ] + + results = executor.map(download_img, urls) + + for res in results: + print(res) diff --git a/python_advance-main/threads/__main__.py b/python_advance-main/threads/__main__.py new file mode 100644 index 0000000..34007a7 --- /dev/null +++ b/python_advance-main/threads/__main__.py @@ -0,0 +1,18 @@ +from threading import Thread + + +def task(count: int): + for n in range(count): + print(n) + + +thread1 = Thread(target=task, args=(10,)) +thread2 = Thread(target=task, args=(20,)) + +thread1.start() +thread2.start() + +thread1.join() +thread2.join() + +print("Main threads is end") diff --git a/python_advance-main/typeclass/__main__.py b/python_advance-main/typeclass/__main__.py new file mode 100644 index 0000000..4d6b698 --- /dev/null +++ b/python_advance-main/typeclass/__main__.py @@ -0,0 +1,24 @@ +class Student: + def greeting(self): + print("Hello student") + + +print(type(Student)) +print(isinstance(Student, type)) + + +class_body = """ +def greeting(self): + print('Hello customer') + +def jump(self): + print('jump') +""" +class_dict = {} +exec(class_body, globals(), class_dict) + +Customer = type("Customer", (object,), class_dict) + +c = Customer() +c.greeting() +c.jump() diff --git a/python_advance-main/variablescope/__main__.py b/python_advance-main/variablescope/__main__.py new file mode 100644 index 0000000..ac4df7b --- /dev/null +++ b/python_advance-main/variablescope/__main__.py @@ -0,0 +1,17 @@ +count = 10 + +print(count) + + +def greeting(flag: bool): + global count + if flag: + count = 20 + + print(count) + + +greeting(True) + +print(count) + diff --git a/python_advance-main/yield_from/__main__.py b/python_advance-main/yield_from/__main__.py new file mode 100644 index 0000000..7aa6de2 --- /dev/null +++ b/python_advance-main/yield_from/__main__.py @@ -0,0 +1,69 @@ +def magic_number(exponent: int): + for n in range(3): + yield (n + 1) ** exponent + + +def magic_data(): + yield from magic_number(2) + yield from magic_number(3) + + +# for n in magic_data(): +# print(n) + + +def magic_two(): + exponent = yield 'Please give an exponent based on two' + + while True: + exponent = yield 2 ** exponent + + if exponent is None: + break + + +# m = magic_two() +# print(next(m)) +# +# print(m.send(2)) +# +# print(m.send(3)) +# +# try: +# m.send(None) +# except StopIteration: +# pass + + +def magic_three(): + exponent = yield 'Please give an exponent based on three' + + while True: + exponent = yield 3 ** exponent + + if exponent is None: + break + + +def magic_switch(): + option = yield 'Please choose, 1 - two, 2 - three' + + while True: + if option == 1: + yield from magic_two() + elif option == 2: + yield from magic_three() + else: + break + + +mm = magic_switch() +print(next(mm)) +print(mm.send(2)) +print(mm.send(2)) +print(mm.send(3)) +try: + mm.send(None) +except StopIteration: + pass + diff --git a/real-time-charts-with-fastapi-master/.github/dependabot.yml b/real-time-charts-with-fastapi-master/.github/dependabot.yml new file mode 100644 index 0000000..f2bb44f --- /dev/null +++ b/real-time-charts-with-fastapi-master/.github/dependabot.yml @@ -0,0 +1,19 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + # Enable version updates for Python + - package-ecosystem: "pip" + directory: "/" # Location of package manifests + schedule: + interval: "daily" + + # Enable version updates for Docker + - package-ecosystem: "docker" + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/real-time-charts-with-fastapi-master/.gitignore b/real-time-charts-with-fastapi-master/.gitignore new file mode 100644 index 0000000..7e86cf0 --- /dev/null +++ b/real-time-charts-with-fastapi-master/.gitignore @@ -0,0 +1,140 @@ +### Python template +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + diff --git a/real-time-charts-with-fastapi-master/README.md b/real-time-charts-with-fastapi-master/README.md new file mode 100644 index 0000000..0f11dab --- /dev/null +++ b/real-time-charts-with-fastapi-master/README.md @@ -0,0 +1,24 @@ +# Creating Real-Time Charts with FastAPI + +Sample application for the blog [Creating Real-Time Charts with FastAPI](https://ron.sh/creating-real-time-charts-with-fastapi/) + +## Demo + +Go to https://fastapi.ron.sh/ to see this in action. + +## Build and run + +```bash +docker-compose build +docker-compose up # or "docker-compose up -d" to run in detached mode +``` + +Open http://127.0.0.1:5000/ in browser + +## Author + +[Ronie Martinez](mailto:ronmarti18@gmail.com) + +## References + +- [Creating Real-Time Charts with Flask](https://github.com/roniemartinez/real-time-charts-with-flask) diff --git a/real-time-charts-with-fastapi-master/application.py b/real-time-charts-with-fastapi-master/application.py new file mode 100644 index 0000000..c4152ca --- /dev/null +++ b/real-time-charts-with-fastapi-master/application.py @@ -0,0 +1,54 @@ +import asyncio +import json +import logging +import random +import sys +from datetime import datetime +from typing import Iterator + +from fastapi import FastAPI +from fastapi.requests import Request +from fastapi.responses import HTMLResponse, StreamingResponse +from fastapi.templating import Jinja2Templates +from starlette.responses import Response + +logging.basicConfig(stream=sys.stdout, level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s") +logger = logging.getLogger(__name__) + +application = FastAPI() +templates = Jinja2Templates(directory="templates") +random.seed() # Initialize the random number generator + + +@application.get("/", response_class=HTMLResponse) +async def index(request: Request) -> Response: + return templates.TemplateResponse("index.html", {"request": request}) + + +async def generate_random_data(request: Request) -> Iterator[str]: + """ + Generates random value between 0 and 100 + + :return: String containing current timestamp (YYYY-mm-dd HH:MM:SS) and randomly generated data. + """ + client_ip = request.client.host + + logger.info("Client %s connected", client_ip) + + while True: + json_data = json.dumps( + { + "time": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + "value": random.random() * 100, + } + ) + yield f"data:{json_data}\n\n" + await asyncio.sleep(1) + + +@application.get("/chart-data") +async def chart_data(request: Request) -> StreamingResponse: + response = StreamingResponse(generate_random_data(request), media_type="text/event-stream") + response.headers["Cache-Control"] = "no-cache" + response.headers["X-Accel-Buffering"] = "no" + return response diff --git a/real-time-charts-with-fastapi-master/docker-compose.yml b/real-time-charts-with-fastapi-master/docker-compose.yml new file mode 100644 index 0000000..c2cd1d1 --- /dev/null +++ b/real-time-charts-with-fastapi-master/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.8" + +services: + web: + build: . + image: real-time-charts-with-fastapi + command: uvicorn application:application --reload --host 0.0.0.0 --port 5000 + volumes: + - .:/code + ports: + - "127.0.0.1:5000:5000" \ No newline at end of file diff --git a/real-time-charts-with-fastapi-master/poetry.lock b/real-time-charts-with-fastapi-master/poetry.lock new file mode 100644 index 0000000..19f26b1 --- /dev/null +++ b/real-time-charts-with-fastapi-master/poetry.lock @@ -0,0 +1,910 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. + +[[package]] +name = "anyio" +version = "3.6.2" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +category = "main" +optional = false +python-versions = ">=3.6.2" +files = [ + {file = "anyio-3.6.2-py3-none-any.whl", hash = "sha256:fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3"}, + {file = "anyio-3.6.2.tar.gz", hash = "sha256:25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" +typing-extensions = {version = "*", markers = "python_version < \"3.8\""} + +[package.extras] +doc = ["packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["contextlib2", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (<0.15)", "uvloop (>=0.15)"] +trio = ["trio (>=0.16,<0.22)"] + +[[package]] +name = "autoflake" +version = "1.7.8" +description = "Removes unused imports and unused variables" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "autoflake-1.7.8-py3-none-any.whl", hash = "sha256:46373ef69b6714f5064c923bb28bd797c4f8a9497f557d87fc36665c6d956b39"}, + {file = "autoflake-1.7.8.tar.gz", hash = "sha256:e7e46372dee46fa1c97acf310d99d922b63d369718a270809d7c278d34a194cf"}, +] + +[package.dependencies] +pyflakes = ">=1.1.0,<3" +tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} + +[[package]] +name = "black" +version = "23.1.0" +description = "The uncompromising code formatter." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "black-23.1.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:b6a92a41ee34b883b359998f0c8e6eb8e99803aa8bf3123bf2b2e6fec505a221"}, + {file = "black-23.1.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:57c18c5165c1dbe291d5306e53fb3988122890e57bd9b3dcb75f967f13411a26"}, + {file = "black-23.1.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:9880d7d419bb7e709b37e28deb5e68a49227713b623c72b2b931028ea65f619b"}, + {file = "black-23.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6663f91b6feca5d06f2ccd49a10f254f9298cc1f7f49c46e498a0771b507104"}, + {file = "black-23.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9afd3f493666a0cd8f8df9a0200c6359ac53940cbde049dcb1a7eb6ee2dd7074"}, + {file = "black-23.1.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:bfffba28dc52a58f04492181392ee380e95262af14ee01d4bc7bb1b1c6ca8d27"}, + {file = "black-23.1.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:c1c476bc7b7d021321e7d93dc2cbd78ce103b84d5a4cf97ed535fbc0d6660648"}, + {file = "black-23.1.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:382998821f58e5c8238d3166c492139573325287820963d2f7de4d518bd76958"}, + {file = "black-23.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bf649fda611c8550ca9d7592b69f0637218c2369b7744694c5e4902873b2f3a"}, + {file = "black-23.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:121ca7f10b4a01fd99951234abdbd97728e1240be89fde18480ffac16503d481"}, + {file = "black-23.1.0-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:a8471939da5e824b891b25751955be52ee7f8a30a916d570a5ba8e0f2eb2ecad"}, + {file = "black-23.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8178318cb74f98bc571eef19068f6ab5613b3e59d4f47771582f04e175570ed8"}, + {file = "black-23.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:a436e7881d33acaf2536c46a454bb964a50eff59b21b51c6ccf5a40601fbef24"}, + {file = "black-23.1.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:a59db0a2094d2259c554676403fa2fac3473ccf1354c1c63eccf7ae65aac8ab6"}, + {file = "black-23.1.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:0052dba51dec07ed029ed61b18183942043e00008ec65d5028814afaab9a22fd"}, + {file = "black-23.1.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:49f7b39e30f326a34b5c9a4213213a6b221d7ae9d58ec70df1c4a307cf2a1580"}, + {file = "black-23.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:162e37d49e93bd6eb6f1afc3e17a3d23a823042530c37c3c42eeeaf026f38468"}, + {file = "black-23.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b70eb40a78dfac24842458476135f9b99ab952dd3f2dab738c1881a9b38b753"}, + {file = "black-23.1.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:a29650759a6a0944e7cca036674655c2f0f63806ddecc45ed40b7b8aa314b651"}, + {file = "black-23.1.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:bb460c8561c8c1bec7824ecbc3ce085eb50005883a6203dcfb0122e95797ee06"}, + {file = "black-23.1.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c91dfc2c2a4e50df0026f88d2215e166616e0c80e86004d0003ece0488db2739"}, + {file = "black-23.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a951cc83ab535d248c89f300eccbd625e80ab880fbcfb5ac8afb5f01a258ac9"}, + {file = "black-23.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:0680d4380db3719ebcfb2613f34e86c8e6d15ffeabcf8ec59355c5e7b85bb555"}, + {file = "black-23.1.0-py3-none-any.whl", hash = "sha256:7a0f701d314cfa0896b9001df70a530eb2472babb76086344e688829efd97d32"}, + {file = "black-23.1.0.tar.gz", hash = "sha256:b0bd97bea8903f5a2ba7219257a44e3f1f9d00073d6cc1add68f0beec69692ac"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} +typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} +importlib-metadata = {version = "*", markers = "python_version < \"3.8\""} + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "fastapi" +version = "0.92.0" +description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastapi-0.92.0-py3-none-any.whl", hash = "sha256:ae7b97c778e2f2ec3fb3cb4fb14162129411d99907fb71920f6d69a524340ebf"}, + {file = "fastapi-0.92.0.tar.gz", hash = "sha256:023a0f5bd2c8b2609014d3bba1e14a1d7df96c6abea0a73070621c9862b9a4de"}, +] + +[package.dependencies] +pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0" +starlette = ">=0.25.0,<0.26.0" + +[package.extras] +all = ["email-validator (>=1.1.1)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +dev = ["pre-commit (>=2.17.0,<3.0.0)", "ruff (==0.0.138)", "uvicorn[standard] (>=0.12.0,<0.21.0)"] +doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer[all] (>=0.6.1,<0.8.0)"] +test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.10.0)", "coverage[toml] (>=6.5.0,<8.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.982)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "ruff (==0.0.138)", "sqlalchemy (>=1.3.18,<1.4.43)", "types-orjson (==3.6.2)", "types-ujson (==5.6.0.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)"] + +[[package]] +name = "flake8" +version = "5.0.4" +description = "the modular source code checker: pep8 pyflakes and co" +category = "dev" +optional = false +python-versions = ">=3.6.1" +files = [ + {file = "flake8-5.0.4-py2.py3-none-any.whl", hash = "sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248"}, + {file = "flake8-5.0.4.tar.gz", hash = "sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db"}, +] + +[package.dependencies] +importlib-metadata = {version = ">=1.1.0,<4.3", markers = "python_version < \"3.8\""} +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.9.0,<2.10.0" +pyflakes = ">=2.5.0,<2.6.0" + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[package.dependencies] +typing-extensions = {version = "*", markers = "python_version < \"3.8\""} + +[[package]] +name = "httptools" +version = "0.5.0" +description = "A collection of framework independent HTTP protocol utils." +category = "main" +optional = false +python-versions = ">=3.5.0" +files = [ + {file = "httptools-0.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8f470c79061599a126d74385623ff4744c4e0f4a0997a353a44923c0b561ee51"}, + {file = "httptools-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e90491a4d77d0cb82e0e7a9cb35d86284c677402e4ce7ba6b448ccc7325c5421"}, + {file = "httptools-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1d2357f791b12d86faced7b5736dea9ef4f5ecdc6c3f253e445ee82da579449"}, + {file = "httptools-0.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f90cd6fd97c9a1b7fe9215e60c3bd97336742a0857f00a4cb31547bc22560c2"}, + {file = "httptools-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5230a99e724a1bdbbf236a1b58d6e8504b912b0552721c7c6b8570925ee0ccde"}, + {file = "httptools-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3a47a34f6015dd52c9eb629c0f5a8a5193e47bf2a12d9a3194d231eaf1bc451a"}, + {file = "httptools-0.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:24bb4bb8ac3882f90aa95403a1cb48465de877e2d5298ad6ddcfdebec060787d"}, + {file = "httptools-0.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e67d4f8734f8054d2c4858570cc4b233bf753f56e85217de4dfb2495904cf02e"}, + {file = "httptools-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7e5eefc58d20e4c2da82c78d91b2906f1a947ef42bd668db05f4ab4201a99f49"}, + {file = "httptools-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0297822cea9f90a38df29f48e40b42ac3d48a28637368f3ec6d15eebefd182f9"}, + {file = "httptools-0.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:557be7fbf2bfa4a2ec65192c254e151684545ebab45eca5d50477d562c40f986"}, + {file = "httptools-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:54465401dbbec9a6a42cf737627fb0f014d50dc7365a6b6cd57753f151a86ff0"}, + {file = "httptools-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4d9ebac23d2de960726ce45f49d70eb5466725c0087a078866043dad115f850f"}, + {file = "httptools-0.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:e8a34e4c0ab7b1ca17b8763613783e2458e77938092c18ac919420ab8655c8c1"}, + {file = "httptools-0.5.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f659d7a48401158c59933904040085c200b4be631cb5f23a7d561fbae593ec1f"}, + {file = "httptools-0.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef1616b3ba965cd68e6f759eeb5d34fbf596a79e84215eeceebf34ba3f61fdc7"}, + {file = "httptools-0.5.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3625a55886257755cb15194efbf209584754e31d336e09e2ffe0685a76cb4b60"}, + {file = "httptools-0.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:72ad589ba5e4a87e1d404cc1cb1b5780bfcb16e2aec957b88ce15fe879cc08ca"}, + {file = "httptools-0.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:850fec36c48df5a790aa735417dca8ce7d4b48d59b3ebd6f83e88a8125cde324"}, + {file = "httptools-0.5.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f222e1e9d3f13b68ff8a835574eda02e67277d51631d69d7cf7f8e07df678c86"}, + {file = "httptools-0.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3cb8acf8f951363b617a8420768a9f249099b92e703c052f9a51b66342eea89b"}, + {file = "httptools-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550059885dc9c19a072ca6d6735739d879be3b5959ec218ba3e013fd2255a11b"}, + {file = "httptools-0.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a04fe458a4597aa559b79c7f48fe3dceabef0f69f562daf5c5e926b153817281"}, + {file = "httptools-0.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d0c1044bce274ec6711f0770fd2d5544fe392591d204c68328e60a46f88843b"}, + {file = "httptools-0.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c6eeefd4435055a8ebb6c5cc36111b8591c192c56a95b45fe2af22d9881eee25"}, + {file = "httptools-0.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:5b65be160adcd9de7a7e6413a4966665756e263f0d5ddeffde277ffeee0576a5"}, + {file = "httptools-0.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fe9c766a0c35b7e3d6b6939393c8dfdd5da3ac5dec7f971ec9134f284c6c36d6"}, + {file = "httptools-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:85b392aba273566c3d5596a0a490978c085b79700814fb22bfd537d381dd230c"}, + {file = "httptools-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5e3088f4ed33947e16fd865b8200f9cfae1144f41b64a8cf19b599508e096bc"}, + {file = "httptools-0.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c2a56b6aad7cc8f5551d8e04ff5a319d203f9d870398b94702300de50190f63"}, + {file = "httptools-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9b571b281a19762adb3f48a7731f6842f920fa71108aff9be49888320ac3e24d"}, + {file = "httptools-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa47ffcf70ba6f7848349b8a6f9b481ee0f7637931d91a9860a1838bfc586901"}, + {file = "httptools-0.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:bede7ee075e54b9a5bde695b4fc8f569f30185891796b2e4e09e2226801d09bd"}, + {file = "httptools-0.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:64eba6f168803a7469866a9c9b5263a7463fa8b7a25b35e547492aa7322036b6"}, + {file = "httptools-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4b098e4bb1174096a93f48f6193e7d9aa7071506a5877da09a783509ca5fff42"}, + {file = "httptools-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9423a2de923820c7e82e18980b937893f4aa8251c43684fa1772e341f6e06887"}, + {file = "httptools-0.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca1b7becf7d9d3ccdbb2f038f665c0f4857e08e1d8481cbcc1a86a0afcfb62b2"}, + {file = "httptools-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:50d4613025f15f4b11f1c54bbed4761c0020f7f921b95143ad6d58c151198142"}, + {file = "httptools-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8ffce9d81c825ac1deaa13bc9694c0562e2840a48ba21cfc9f3b4c922c16f372"}, + {file = "httptools-0.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:1af91b3650ce518d226466f30bbba5b6376dbd3ddb1b2be8b0658c6799dd450b"}, + {file = "httptools-0.5.0.tar.gz", hash = "sha256:295874861c173f9101960bba332429bb77ed4dcd8cdf5cee9922eb00e4f6bc09"}, +] + +[package.extras] +test = ["Cython (>=0.29.24,<0.30.0)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "importlib-metadata" +version = "4.2.0" +description = "Read metadata from Python packages" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "importlib_metadata-4.2.0-py3-none-any.whl", hash = "sha256:057e92c15bc8d9e8109738a48db0ccb31b4d9d5cfbee5a8670879a30be66304b"}, + {file = "importlib_metadata-4.2.0.tar.gz", hash = "sha256:b7e52a1f8dec14a75ea73e0891f3060099ca1d8e6a462a4dff11c3e119ea1b31"}, +] + +[package.dependencies] +typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""} +zipp = ">=0.5" + +[package.extras] +docs = ["jaraco.packaging (>=8.2)", "rst.linker (>=1.9)", "sphinx"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pep517", "pyfakefs", "pytest (>=4.6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy"] + +[[package]] +name = "isort" +version = "5.11.5" +description = "A Python utility / library to sort Python imports." +category = "dev" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "isort-5.11.5-py3-none-any.whl", hash = "sha256:ba1d72fb2595a01c7895a5128f9585a5cc4b6d395f1c8d514989b9a7eb2a8746"}, + {file = "isort-5.11.5.tar.gz", hash = "sha256:6be1f76a507cb2ecf16c7cf14a37e41609ca082330be4e3436a18ef74add55db"}, +] + +[package.extras] +colors = ["colorama (>=0.4.3,<0.5.0)"] +pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"] +plugins = ["setuptools"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "markupsafe" +version = "2.1.1" +description = "Safely add untrusted strings to HTML/XML markup." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, + {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +description = "McCabe checker, plugin for flake8" +category = "dev" +optional = false +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "mypy" +version = "1.0.1" +description = "Optional static typing for Python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:71a808334d3f41ef011faa5a5cd8153606df5fc0b56de5b2e89566c8093a0c9a"}, + {file = "mypy-1.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:920169f0184215eef19294fa86ea49ffd4635dedfdea2b57e45cb4ee85d5ccaf"}, + {file = "mypy-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27a0f74a298769d9fdc8498fcb4f2beb86f0564bcdb1a37b58cbbe78e55cf8c0"}, + {file = "mypy-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:65b122a993d9c81ea0bfde7689b3365318a88bde952e4dfa1b3a8b4ac05d168b"}, + {file = "mypy-1.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:5deb252fd42a77add936b463033a59b8e48eb2eaec2976d76b6878d031933fe4"}, + {file = "mypy-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2013226d17f20468f34feddd6aae4635a55f79626549099354ce641bc7d40262"}, + {file = "mypy-1.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:48525aec92b47baed9b3380371ab8ab6e63a5aab317347dfe9e55e02aaad22e8"}, + {file = "mypy-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c96b8a0c019fe29040d520d9257d8c8f122a7343a8307bf8d6d4a43f5c5bfcc8"}, + {file = "mypy-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:448de661536d270ce04f2d7dddaa49b2fdba6e3bd8a83212164d4174ff43aa65"}, + {file = "mypy-1.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:d42a98e76070a365a1d1c220fcac8aa4ada12ae0db679cb4d910fabefc88b994"}, + {file = "mypy-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e64f48c6176e243ad015e995de05af7f22bbe370dbb5b32bd6988438ec873919"}, + {file = "mypy-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fdd63e4f50e3538617887e9aee91855368d9fc1dea30da743837b0df7373bc4"}, + {file = "mypy-1.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dbeb24514c4acbc78d205f85dd0e800f34062efcc1f4a4857c57e4b4b8712bff"}, + {file = "mypy-1.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a2948c40a7dd46c1c33765718936669dc1f628f134013b02ff5ac6c7ef6942bf"}, + {file = "mypy-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5bc8d6bd3b274dd3846597855d96d38d947aedba18776aa998a8d46fabdaed76"}, + {file = "mypy-1.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:17455cda53eeee0a4adb6371a21dd3dbf465897de82843751cf822605d152c8c"}, + {file = "mypy-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e831662208055b006eef68392a768ff83596035ffd6d846786578ba1714ba8f6"}, + {file = "mypy-1.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e60d0b09f62ae97a94605c3f73fd952395286cf3e3b9e7b97f60b01ddfbbda88"}, + {file = "mypy-1.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:0af4f0e20706aadf4e6f8f8dc5ab739089146b83fd53cb4a7e0e850ef3de0bb6"}, + {file = "mypy-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:24189f23dc66f83b839bd1cce2dfc356020dfc9a8bae03978477b15be61b062e"}, + {file = "mypy-1.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93a85495fb13dc484251b4c1fd7a5ac370cd0d812bbfc3b39c1bafefe95275d5"}, + {file = "mypy-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f546ac34093c6ce33f6278f7c88f0f147a4849386d3bf3ae193702f4fe31407"}, + {file = "mypy-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c6c2ccb7af7154673c591189c3687b013122c5a891bb5651eca3db8e6c6c55bd"}, + {file = "mypy-1.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:15b5a824b58c7c822c51bc66308e759243c32631896743f030daf449fe3677f3"}, + {file = "mypy-1.0.1-py3-none-any.whl", hash = "sha256:eda5c8b9949ed411ff752b9a01adda31afe7eae1e53e946dbdf9db23865e66c4"}, + {file = "mypy-1.0.1.tar.gz", hash = "sha256:28cea5a6392bb43d266782983b5a4216c25544cd7d80be681a155ddcdafd152d"}, +] + +[package.dependencies] +mypy-extensions = ">=0.4.3" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typed-ast = {version = ">=1.4.0,<2", markers = "python_version < \"3.8\""} +typing-extensions = ">=3.10" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "0.4.3" +description = "Experimental type system extensions for programs checked with the mypy typechecker." +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, +] + +[[package]] +name = "packaging" +version = "23.0" +description = "Core utilities for Python packages" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.0-py3-none-any.whl", hash = "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2"}, + {file = "packaging-23.0.tar.gz", hash = "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97"}, +] + +[[package]] +name = "pathspec" +version = "0.10.3" +description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.10.3-py3-none-any.whl", hash = "sha256:3c95343af8b756205e2aba76e843ba9520a24dd84f68c22b9f93251507509dd6"}, + {file = "pathspec-0.10.3.tar.gz", hash = "sha256:56200de4077d9d0791465aa9095a01d421861e405b5096955051deefd697d6f6"}, +] + +[[package]] +name = "platformdirs" +version = "2.6.2" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-2.6.2-py3-none-any.whl", hash = "sha256:83c8f6d04389165de7c9b6f0c682439697887bca0aa2f1c87ef1826be3584490"}, + {file = "platformdirs-2.6.2.tar.gz", hash = "sha256:e1fea1fe471b9ff8332e229df3cb7de4f53eeea4998d3b6bfff542115e998bd2"}, +] + +[package.dependencies] +typing-extensions = {version = ">=4.4", markers = "python_version < \"3.8\""} + +[package.extras] +docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=5.3)", "sphinx-autodoc-typehints (>=1.19.5)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] + +[[package]] +name = "pycodestyle" +version = "2.9.1" +description = "Python style guide checker" +category = "dev" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, + {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, +] + +[[package]] +name = "pydantic" +version = "1.10.4" +description = "Data validation and settings management using python type hints" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic-1.10.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5635de53e6686fe7a44b5cf25fcc419a0d5e5c1a1efe73d49d48fe7586db854"}, + {file = "pydantic-1.10.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6dc1cc241440ed7ca9ab59d9929075445da6b7c94ced281b3dd4cfe6c8cff817"}, + {file = "pydantic-1.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51bdeb10d2db0f288e71d49c9cefa609bca271720ecd0c58009bd7504a0c464c"}, + {file = "pydantic-1.10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78cec42b95dbb500a1f7120bdf95c401f6abb616bbe8785ef09887306792e66e"}, + {file = "pydantic-1.10.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8775d4ef5e7299a2f4699501077a0defdaac5b6c4321173bcb0f3c496fbadf85"}, + {file = "pydantic-1.10.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:572066051eeac73d23f95ba9a71349c42a3e05999d0ee1572b7860235b850cc6"}, + {file = "pydantic-1.10.4-cp310-cp310-win_amd64.whl", hash = "sha256:7feb6a2d401f4d6863050f58325b8d99c1e56f4512d98b11ac64ad1751dc647d"}, + {file = "pydantic-1.10.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39f4a73e5342b25c2959529f07f026ef58147249f9b7431e1ba8414a36761f53"}, + {file = "pydantic-1.10.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:983e720704431a6573d626b00662eb78a07148c9115129f9b4351091ec95ecc3"}, + {file = "pydantic-1.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75d52162fe6b2b55964fbb0af2ee58e99791a3138588c482572bb6087953113a"}, + {file = "pydantic-1.10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fdf8d759ef326962b4678d89e275ffc55b7ce59d917d9f72233762061fd04a2d"}, + {file = "pydantic-1.10.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:05a81b006be15655b2a1bae5faa4280cf7c81d0e09fcb49b342ebf826abe5a72"}, + {file = "pydantic-1.10.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d88c4c0e5c5dfd05092a4b271282ef0588e5f4aaf345778056fc5259ba098857"}, + {file = "pydantic-1.10.4-cp311-cp311-win_amd64.whl", hash = "sha256:6a05a9db1ef5be0fe63e988f9617ca2551013f55000289c671f71ec16f4985e3"}, + {file = "pydantic-1.10.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:887ca463c3bc47103c123bc06919c86720e80e1214aab79e9b779cda0ff92a00"}, + {file = "pydantic-1.10.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fdf88ab63c3ee282c76d652fc86518aacb737ff35796023fae56a65ced1a5978"}, + {file = "pydantic-1.10.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a48f1953c4a1d9bd0b5167ac50da9a79f6072c63c4cef4cf2a3736994903583e"}, + {file = "pydantic-1.10.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a9f2de23bec87ff306aef658384b02aa7c32389766af3c5dee9ce33e80222dfa"}, + {file = "pydantic-1.10.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:cd8702c5142afda03dc2b1ee6bc358b62b3735b2cce53fc77b31ca9f728e4bc8"}, + {file = "pydantic-1.10.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6e7124d6855b2780611d9f5e1e145e86667eaa3bd9459192c8dc1a097f5e9903"}, + {file = "pydantic-1.10.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b53e1d41e97063d51a02821b80538053ee4608b9a181c1005441f1673c55423"}, + {file = "pydantic-1.10.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:55b1625899acd33229c4352ce0ae54038529b412bd51c4915349b49ca575258f"}, + {file = "pydantic-1.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:301d626a59edbe5dfb48fcae245896379a450d04baeed50ef40d8199f2733b06"}, + {file = "pydantic-1.10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6f9d649892a6f54a39ed56b8dfd5e08b5f3be5f893da430bed76975f3735d15"}, + {file = "pydantic-1.10.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d7b5a3821225f5c43496c324b0d6875fde910a1c2933d726a743ce328fbb2a8c"}, + {file = "pydantic-1.10.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f2f7eb6273dd12472d7f218e1fef6f7c7c2f00ac2e1ecde4db8824c457300416"}, + {file = "pydantic-1.10.4-cp38-cp38-win_amd64.whl", hash = "sha256:4b05697738e7d2040696b0a66d9f0a10bec0efa1883ca75ee9e55baf511909d6"}, + {file = "pydantic-1.10.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a9a6747cac06c2beb466064dda999a13176b23535e4c496c9d48e6406f92d42d"}, + {file = "pydantic-1.10.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb992a1ef739cc7b543576337bebfc62c0e6567434e522e97291b251a41dad7f"}, + {file = "pydantic-1.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:990406d226dea0e8f25f643b370224771878142155b879784ce89f633541a024"}, + {file = "pydantic-1.10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e82a6d37a95e0b1b42b82ab340ada3963aea1317fd7f888bb6b9dfbf4fff57c"}, + {file = "pydantic-1.10.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9193d4f4ee8feca58bc56c8306bcb820f5c7905fd919e0750acdeeeef0615b28"}, + {file = "pydantic-1.10.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2b3ce5f16deb45c472dde1a0ee05619298c864a20cded09c4edd820e1454129f"}, + {file = "pydantic-1.10.4-cp39-cp39-win_amd64.whl", hash = "sha256:9cbdc268a62d9a98c56e2452d6c41c0263d64a2009aac69246486f01b4f594c4"}, + {file = "pydantic-1.10.4-py3-none-any.whl", hash = "sha256:4948f264678c703f3877d1c8877c4e3b2e12e549c57795107f08cf70c6ec7774"}, + {file = "pydantic-1.10.4.tar.gz", hash = "sha256:b9a3859f24eb4e097502a3be1fb4b2abb79b6103dd9e2e0edb70613a4459a648"}, +] + +[package.dependencies] +typing-extensions = ">=4.2.0" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + +[[package]] +name = "pyflakes" +version = "2.5.0" +description = "passive checker of Python programs" +category = "dev" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pyflakes-2.5.0-py2.py3-none-any.whl", hash = "sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2"}, + {file = "pyflakes-2.5.0.tar.gz", hash = "sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3"}, +] + +[[package]] +name = "pyproject-flake8" +version = "5.0.4.post1" +description = "pyproject-flake8 (`pflake8`), a monkey patching wrapper to connect flake8 with pyproject.toml configuration" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "pyproject-flake8-5.0.4.post1.tar.gz", hash = "sha256:c2dfdf1064f47efbb2e4faf1a32b0b6a6ea67dc4d1debb98d862b0cdee377941"}, + {file = "pyproject_flake8-5.0.4.post1-py2.py3-none-any.whl", hash = "sha256:457e52dde1b7a1f84b5230c70d61afa58ced64a44b81a609f19e972319fa68ed"}, +] + +[package.dependencies] +flake8 = "5.0.4" +tomli = {version = "*", markers = "python_version < \"3.11\""} + +[[package]] +name = "python-dotenv" +version = "0.21.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "python-dotenv-0.21.0.tar.gz", hash = "sha256:b77d08274639e3d34145dfa6c7008e66df0f04b7be7a75fd0d5292c191d79045"}, + {file = "python_dotenv-0.21.0-py3-none-any.whl", hash = "sha256:1684eb44636dd462b66c3ee016599815514527ad99965de77f43e0944634a7e5"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "starlette" +version = "0.25.0" +description = "The little ASGI library that shines." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "starlette-0.25.0-py3-none-any.whl", hash = "sha256:774f1df1983fd594b9b6fb3ded39c2aa1979d10ac45caac0f4255cbe2acb8628"}, + {file = "starlette-0.25.0.tar.gz", hash = "sha256:854c71e73736c429c2bdb07801f2c76c9cba497e7c3cf4988fde5e95fe4cdb3c"}, +] + +[package.dependencies] +anyio = ">=3.4.0,<5" +typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} + +[package.extras] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "typed-ast" +version = "1.5.4" +description = "a fork of Python 2 and 3 ast modules with type comment support" +category = "dev" +optional = false +python-versions = ">=3.6" +files = [ + {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, + {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, + {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, + {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, + {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, + {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, + {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, + {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, + {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, + {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, +] + +[[package]] +name = "typing-extensions" +version = "4.4.0" +description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.4.0-py3-none-any.whl", hash = "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e"}, + {file = "typing_extensions-4.4.0.tar.gz", hash = "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"}, +] + +[[package]] +name = "uvicorn" +version = "0.20.0" +description = "The lightning-fast ASGI server." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uvicorn-0.20.0-py3-none-any.whl", hash = "sha256:c3ed1598a5668208723f2bb49336f4509424ad198d6ab2615b7783db58d919fd"}, + {file = "uvicorn-0.20.0.tar.gz", hash = "sha256:a4e12017b940247f836bc90b72e725d7dfd0c8ed1c51eb365f5ba30d9f5127d8"}, +] + +[package.dependencies] +click = ">=7.0" +colorama = {version = ">=0.4", optional = true, markers = "sys_platform == \"win32\" and extra == \"standard\""} +h11 = ">=0.8" +httptools = {version = ">=0.5.0", optional = true, markers = "extra == \"standard\""} +python-dotenv = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} +pyyaml = {version = ">=5.1", optional = true, markers = "extra == \"standard\""} +typing-extensions = {version = "*", markers = "python_version < \"3.8\""} +uvloop = {version = ">=0.14.0,<0.15.0 || >0.15.0,<0.15.1 || >0.15.1", optional = true, markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\" and extra == \"standard\""} +watchfiles = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} +websockets = {version = ">=10.4", optional = true, markers = "extra == \"standard\""} + +[package.extras] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] + +[[package]] +name = "uvloop" +version = "0.17.0" +description = "Fast implementation of asyncio event loop on top of libuv" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ce9f61938d7155f79d3cb2ffa663147d4a76d16e08f65e2c66b77bd41b356718"}, + {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:68532f4349fd3900b839f588972b3392ee56042e440dd5873dfbbcd2cc67617c"}, + {file = "uvloop-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0949caf774b9fcefc7c5756bacbbbd3fc4c05a6b7eebc7c7ad6f825b23998d6d"}, + {file = "uvloop-0.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff3d00b70ce95adce264462c930fbaecb29718ba6563db354608f37e49e09024"}, + {file = "uvloop-0.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a5abddb3558d3f0a78949c750644a67be31e47936042d4f6c888dd6f3c95f4aa"}, + {file = "uvloop-0.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8efcadc5a0003d3a6e887ccc1fb44dec25594f117a94e3127954c05cf144d811"}, + {file = "uvloop-0.17.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3378eb62c63bf336ae2070599e49089005771cc651c8769aaad72d1bd9385a7c"}, + {file = "uvloop-0.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6aafa5a78b9e62493539456f8b646f85abc7093dd997f4976bb105537cf2635e"}, + {file = "uvloop-0.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c686a47d57ca910a2572fddfe9912819880b8765e2f01dc0dd12a9bf8573e539"}, + {file = "uvloop-0.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:864e1197139d651a76c81757db5eb199db8866e13acb0dfe96e6fc5d1cf45fc4"}, + {file = "uvloop-0.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2a6149e1defac0faf505406259561bc14b034cdf1d4711a3ddcdfbaa8d825a05"}, + {file = "uvloop-0.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6708f30db9117f115eadc4f125c2a10c1a50d711461699a0cbfaa45b9a78e376"}, + {file = "uvloop-0.17.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:23609ca361a7fc587031429fa25ad2ed7242941adec948f9d10c045bfecab06b"}, + {file = "uvloop-0.17.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2deae0b0fb00a6af41fe60a675cec079615b01d68beb4cc7b722424406b126a8"}, + {file = "uvloop-0.17.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45cea33b208971e87a31c17622e4b440cac231766ec11e5d22c76fab3bf9df62"}, + {file = "uvloop-0.17.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9b09e0f0ac29eee0451d71798878eae5a4e6a91aa275e114037b27f7db72702d"}, + {file = "uvloop-0.17.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:dbbaf9da2ee98ee2531e0c780455f2841e4675ff580ecf93fe5c48fe733b5667"}, + {file = "uvloop-0.17.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a4aee22ece20958888eedbad20e4dbb03c37533e010fb824161b4f05e641f738"}, + {file = "uvloop-0.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:307958f9fc5c8bb01fad752d1345168c0abc5d62c1b72a4a8c6c06f042b45b20"}, + {file = "uvloop-0.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ebeeec6a6641d0adb2ea71dcfb76017602ee2bfd8213e3fcc18d8f699c5104f"}, + {file = "uvloop-0.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1436c8673c1563422213ac6907789ecb2b070f5939b9cbff9ef7113f2b531595"}, + {file = "uvloop-0.17.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8887d675a64cfc59f4ecd34382e5b4f0ef4ae1da37ed665adba0c2badf0d6578"}, + {file = "uvloop-0.17.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3db8de10ed684995a7f34a001f15b374c230f7655ae840964d51496e2f8a8474"}, + {file = "uvloop-0.17.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7d37dccc7ae63e61f7b96ee2e19c40f153ba6ce730d8ba4d3b4e9738c1dccc1b"}, + {file = "uvloop-0.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cbbe908fda687e39afd6ea2a2f14c2c3e43f2ca88e3a11964b297822358d0e6c"}, + {file = "uvloop-0.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d97672dc709fa4447ab83276f344a165075fd9f366a97b712bdd3fee05efae8"}, + {file = "uvloop-0.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1e507c9ee39c61bfddd79714e4f85900656db1aec4d40c6de55648e85c2799c"}, + {file = "uvloop-0.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c092a2c1e736086d59ac8e41f9c98f26bbf9b9222a76f21af9dfe949b99b2eb9"}, + {file = "uvloop-0.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:30babd84706115626ea78ea5dbc7dd8d0d01a2e9f9b306d24ca4ed5796c66ded"}, + {file = "uvloop-0.17.0.tar.gz", hash = "sha256:0ddf6baf9cf11a1a22c71487f39f15b2cf78eb5bde7e5b45fbb99e8a9d91b9e1"}, +] + +[package.extras] +dev = ["Cython (>=0.29.32,<0.30.0)", "Sphinx (>=4.1.2,<4.2.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)", "pytest (>=3.6.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] +docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] +test = ["Cython (>=0.29.32,<0.30.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)"] + +[[package]] +name = "watchfiles" +version = "0.18.1" +description = "Simple, modern and high performance file watching and code reload in python." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "watchfiles-0.18.1-cp37-abi3-macosx_10_7_x86_64.whl", hash = "sha256:9891d3c94272108bcecf5597a592e61105279def1313521e637f2d5acbe08bc9"}, + {file = "watchfiles-0.18.1-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:7102342d60207fa635e24c02a51c6628bf0472e5fef067f78a612386840407fc"}, + {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:00ea0081eca5e8e695cffbc3a726bb90da77f4e3f78ce29b86f0d95db4e70ef7"}, + {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8e6db99e49cd7125d8a4c9d33c0735eea7b75a942c6ad68b75be3e91c242fb"}, + {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc7c726855f04f22ac79131b51bf0c9f728cb2117419ed830a43828b2c4a5fcb"}, + {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbaff354d12235002e62d9d3fa8bcf326a8490c1179aa5c17195a300a9e5952f"}, + {file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:888db233e06907c555eccd10da99b9cd5ed45deca47e41766954292dc9f7b198"}, + {file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:dde79930d1b28f15994ad6613aa2865fc7a403d2bb14585a8714a53233b15717"}, + {file = "watchfiles-0.18.1-cp37-abi3-win32.whl", hash = "sha256:e2b2bdd26bf8d6ed90763e6020b475f7634f919dbd1730ea1b6f8cb88e21de5d"}, + {file = "watchfiles-0.18.1-cp37-abi3-win_amd64.whl", hash = "sha256:c541e0f2c3e95e83e4f84561c893284ba984e9d0025352057396d96dceb09f44"}, + {file = "watchfiles-0.18.1-cp37-abi3-win_arm64.whl", hash = "sha256:9a26272ef3e930330fc0c2c148cc29706cc2c40d25760c7ccea8d768a8feef8b"}, + {file = "watchfiles-0.18.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:9fb12a5e2b42e0b53769455ff93546e6bc9ab14007fbd436978d827a95ca5bd1"}, + {file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:548d6b42303d40264118178053c78820533b683b20dfbb254a8706ca48467357"}, + {file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0d8fdfebc50ac7569358f5c75f2b98bb473befccf9498cf23b3e39993bb45a"}, + {file = "watchfiles-0.18.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0f9a22fff1745e2bb930b1e971c4c5b67ea3b38ae17a6adb9019371f80961219"}, + {file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b02e7fa03cd4059dd61ff0600080a5a9e7a893a85cb8e5178943533656eec65e"}, + {file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a868ce2c7565137f852bd4c863a164dc81306cae7378dbdbe4e2aca51ddb8857"}, + {file = "watchfiles-0.18.1.tar.gz", hash = "sha256:4ec0134a5e31797eb3c6c624dbe9354f2a8ee9c720e0b46fc5b7bab472b7c6d4"}, +] + +[package.dependencies] +anyio = ">=3.0.0" + +[[package]] +name = "websockets" +version = "10.4" +description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "websockets-10.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d58804e996d7d2307173d56c297cf7bc132c52df27a3efaac5e8d43e36c21c48"}, + {file = "websockets-10.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc0b82d728fe21a0d03e65f81980abbbcb13b5387f733a1a870672c5be26edab"}, + {file = "websockets-10.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ba089c499e1f4155d2a3c2a05d2878a3428cf321c848f2b5a45ce55f0d7d310c"}, + {file = "websockets-10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33d69ca7612f0ddff3316b0c7b33ca180d464ecac2d115805c044bf0a3b0d032"}, + {file = "websockets-10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62e627f6b6d4aed919a2052efc408da7a545c606268d5ab5bfab4432734b82b4"}, + {file = "websockets-10.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38ea7b82bfcae927eeffc55d2ffa31665dc7fec7b8dc654506b8e5a518eb4d50"}, + {file = "websockets-10.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e0cb5cc6ece6ffa75baccfd5c02cffe776f3f5c8bf486811f9d3ea3453676ce8"}, + {file = "websockets-10.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae5e95cfb53ab1da62185e23b3130e11d64431179debac6dc3c6acf08760e9b1"}, + {file = "websockets-10.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7c584f366f46ba667cfa66020344886cf47088e79c9b9d39c84ce9ea98aaa331"}, + {file = "websockets-10.4-cp310-cp310-win32.whl", hash = "sha256:b029fb2032ae4724d8ae8d4f6b363f2cc39e4c7b12454df8df7f0f563ed3e61a"}, + {file = "websockets-10.4-cp310-cp310-win_amd64.whl", hash = "sha256:8dc96f64ae43dde92530775e9cb169979f414dcf5cff670455d81a6823b42089"}, + {file = "websockets-10.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:47a2964021f2110116cc1125b3e6d87ab5ad16dea161949e7244ec583b905bb4"}, + {file = "websockets-10.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e789376b52c295c4946403bd0efecf27ab98f05319df4583d3c48e43c7342c2f"}, + {file = "websockets-10.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7d3f0b61c45c3fa9a349cf484962c559a8a1d80dae6977276df8fd1fa5e3cb8c"}, + {file = "websockets-10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f55b5905705725af31ccef50e55391621532cd64fbf0bc6f4bac935f0fccec46"}, + {file = "websockets-10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00c870522cdb69cd625b93f002961ffb0c095394f06ba8c48f17eef7c1541f96"}, + {file = "websockets-10.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f38706e0b15d3c20ef6259fd4bc1700cd133b06c3c1bb108ffe3f8947be15fa"}, + {file = "websockets-10.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f2c38d588887a609191d30e902df2a32711f708abfd85d318ca9b367258cfd0c"}, + {file = "websockets-10.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:fe10ddc59b304cb19a1bdf5bd0a7719cbbc9fbdd57ac80ed436b709fcf889106"}, + {file = "websockets-10.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:90fcf8929836d4a0e964d799a58823547df5a5e9afa83081761630553be731f9"}, + {file = "websockets-10.4-cp311-cp311-win32.whl", hash = "sha256:b9968694c5f467bf67ef97ae7ad4d56d14be2751000c1207d31bf3bb8860bae8"}, + {file = "websockets-10.4-cp311-cp311-win_amd64.whl", hash = "sha256:a7a240d7a74bf8d5cb3bfe6be7f21697a28ec4b1a437607bae08ac7acf5b4882"}, + {file = "websockets-10.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74de2b894b47f1d21cbd0b37a5e2b2392ad95d17ae983e64727e18eb281fe7cb"}, + {file = "websockets-10.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3a686ecb4aa0d64ae60c9c9f1a7d5d46cab9bfb5d91a2d303d00e2cd4c4c5cc"}, + {file = "websockets-10.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0d15c968ea7a65211e084f523151dbf8ae44634de03c801b8bd070b74e85033"}, + {file = "websockets-10.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00213676a2e46b6ebf6045bc11d0f529d9120baa6f58d122b4021ad92adabd41"}, + {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:e23173580d740bf8822fd0379e4bf30aa1d5a92a4f252d34e893070c081050df"}, + {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:dd500e0a5e11969cdd3320935ca2ff1e936f2358f9c2e61f100a1660933320ea"}, + {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4239b6027e3d66a89446908ff3027d2737afc1a375f8fd3eea630a4842ec9a0c"}, + {file = "websockets-10.4-cp37-cp37m-win32.whl", hash = "sha256:8a5cc00546e0a701da4639aa0bbcb0ae2bb678c87f46da01ac2d789e1f2d2038"}, + {file = "websockets-10.4-cp37-cp37m-win_amd64.whl", hash = "sha256:a9f9a735deaf9a0cadc2d8c50d1a5bcdbae8b6e539c6e08237bc4082d7c13f28"}, + {file = "websockets-10.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5c1289596042fad2cdceb05e1ebf7aadf9995c928e0da2b7a4e99494953b1b94"}, + {file = "websockets-10.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0cff816f51fb33c26d6e2b16b5c7d48eaa31dae5488ace6aae468b361f422b63"}, + {file = "websockets-10.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:dd9becd5fe29773d140d68d607d66a38f60e31b86df75332703757ee645b6faf"}, + {file = "websockets-10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45ec8e75b7dbc9539cbfafa570742fe4f676eb8b0d3694b67dabe2f2ceed8aa6"}, + {file = "websockets-10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f72e5cd0f18f262f5da20efa9e241699e0cf3a766317a17392550c9ad7b37d8"}, + {file = "websockets-10.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:185929b4808b36a79c65b7865783b87b6841e852ef5407a2fb0c03381092fa3b"}, + {file = "websockets-10.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7d27a7e34c313b3a7f91adcd05134315002aaf8540d7b4f90336beafaea6217c"}, + {file = "websockets-10.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:884be66c76a444c59f801ac13f40c76f176f1bfa815ef5b8ed44321e74f1600b"}, + {file = "websockets-10.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:931c039af54fc195fe6ad536fde4b0de04da9d5916e78e55405436348cfb0e56"}, + {file = "websockets-10.4-cp38-cp38-win32.whl", hash = "sha256:db3c336f9eda2532ec0fd8ea49fef7a8df8f6c804cdf4f39e5c5c0d4a4ad9a7a"}, + {file = "websockets-10.4-cp38-cp38-win_amd64.whl", hash = "sha256:48c08473563323f9c9debac781ecf66f94ad5a3680a38fe84dee5388cf5acaf6"}, + {file = "websockets-10.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:40e826de3085721dabc7cf9bfd41682dadc02286d8cf149b3ad05bff89311e4f"}, + {file = "websockets-10.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:56029457f219ade1f2fc12a6504ea61e14ee227a815531f9738e41203a429112"}, + {file = "websockets-10.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f5fc088b7a32f244c519a048c170f14cf2251b849ef0e20cbbb0fdf0fdaf556f"}, + {file = "websockets-10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fc8709c00704194213d45e455adc106ff9e87658297f72d544220e32029cd3d"}, + {file = "websockets-10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0154f7691e4fe6c2b2bc275b5701e8b158dae92a1ab229e2b940efe11905dff4"}, + {file = "websockets-10.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c6d2264f485f0b53adf22697ac11e261ce84805c232ed5dbe6b1bcb84b00ff0"}, + {file = "websockets-10.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9bc42e8402dc5e9905fb8b9649f57efcb2056693b7e88faa8fb029256ba9c68c"}, + {file = "websockets-10.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:edc344de4dac1d89300a053ac973299e82d3db56330f3494905643bb68801269"}, + {file = "websockets-10.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:84bc2a7d075f32f6ed98652db3a680a17a4edb21ca7f80fe42e38753a58ee02b"}, + {file = "websockets-10.4-cp39-cp39-win32.whl", hash = "sha256:c94ae4faf2d09f7c81847c63843f84fe47bf6253c9d60b20f25edfd30fb12588"}, + {file = "websockets-10.4-cp39-cp39-win_amd64.whl", hash = "sha256:bbccd847aa0c3a69b5f691a84d2341a4f8a629c6922558f2a70611305f902d74"}, + {file = "websockets-10.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:82ff5e1cae4e855147fd57a2863376ed7454134c2bf49ec604dfe71e446e2193"}, + {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d210abe51b5da0ffdbf7b43eed0cfdff8a55a1ab17abbec4301c9ff077dd0342"}, + {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:942de28af58f352a6f588bc72490ae0f4ccd6dfc2bd3de5945b882a078e4e179"}, + {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9b27d6c1c6cd53dc93614967e9ce00ae7f864a2d9f99fe5ed86706e1ecbf485"}, + {file = "websockets-10.4-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3d3cac3e32b2c8414f4f87c1b2ab686fa6284a980ba283617404377cd448f631"}, + {file = "websockets-10.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:da39dd03d130162deb63da51f6e66ed73032ae62e74aaccc4236e30edccddbb0"}, + {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389f8dbb5c489e305fb113ca1b6bdcdaa130923f77485db5b189de343a179393"}, + {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09a1814bb15eff7069e51fed0826df0bc0702652b5cb8f87697d469d79c23576"}, + {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff64a1d38d156d429404aaa84b27305e957fd10c30e5880d1765c9480bea490f"}, + {file = "websockets-10.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b343f521b047493dc4022dd338fc6db9d9282658862756b4f6fd0e996c1380e1"}, + {file = "websockets-10.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:932af322458da7e4e35df32f050389e13d3d96b09d274b22a7aa1808f292fee4"}, + {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a4162139374a49eb18ef5b2f4da1dd95c994588f5033d64e0bbfda4b6b6fcf"}, + {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c57e4c1349fbe0e446c9fa7b19ed2f8a4417233b6984277cce392819123142d3"}, + {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b627c266f295de9dea86bd1112ed3d5fafb69a348af30a2422e16590a8ecba13"}, + {file = "websockets-10.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:05a7233089f8bd355e8cbe127c2e8ca0b4ea55467861906b80d2ebc7db4d6b72"}, + {file = "websockets-10.4.tar.gz", hash = "sha256:eef610b23933c54d5d921c92578ae5f89813438fded840c2e9809d378dc765d3"}, +] + +[[package]] +name = "zipp" +version = "3.11.0" +description = "Backport of pathlib-compatible object wrapper for zip files" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "zipp-3.11.0-py3-none-any.whl", hash = "sha256:83a28fcb75844b5c0cdaf5aa4003c2d728c77e05f5aeabe8e95e56727005fbaa"}, + {file = "zipp-3.11.0.tar.gz", hash = "sha256:a7a22e05929290a67401440b39690ae6563279bced5f314609d9d03798f56766"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)"] +testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.7" +content-hash = "27c095296acff94df7265a00ecff7b5a29a8fa6512e0f46678c4bea6c320f67e" diff --git a/real-time-charts-with-fastapi-master/pyproject.toml b/real-time-charts-with-fastapi-master/pyproject.toml new file mode 100644 index 0000000..81e95d8 --- /dev/null +++ b/real-time-charts-with-fastapi-master/pyproject.toml @@ -0,0 +1,50 @@ +[tool.poetry] +name = "real-time-charts-with-fastapi" +version = "0.2.1" +description = "Sample application for the blog Creating Real-Time Charts with FastAPI" +authors = ["Ronie Martinez "] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.7" +fastapi = "^0.92.0" +Jinja2 = "^3.1.2" +uvicorn = { extras = ["standard"], version = "^0.20.0" } + +[tool.poetry.dev-dependencies] +autoflake = "^1.7" +black = "^23.1.0" +isort = "^5.11.5" +mypy = "^1.0" +pyproject-flake8 = "^5.0.4" + +[tool.isort] +line_length = 120 +multi_line_output = 3 +force_grid_wrap = 0 +use_parentheses = true +include_trailing_comma = true +ensure_newline_before_comments = true +atomic = true + +[tool.black] +line-length = 120 +target-version = ['py39'] +include = '\.pyi?$' +extend-exclude = """ +# A regex preceded with ^/ will apply only to files and directories +# in the root of the project. +^/setup.py +""" + +[tool.mypy] +disallow_untyped_defs = true +ignore_missing_imports = true + +[tool.flake8] +max-line-length = 120 +extend-ignore = ["E203"] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/real-time-charts-with-fastapi-master/templates/index.html b/real-time-charts-with-fastapi-master/templates/index.html new file mode 100644 index 0000000..1f270dd --- /dev/null +++ b/real-time-charts-with-fastapi-master/templates/index.html @@ -0,0 +1,105 @@ + + + + + Creating Real-Time Charts with FastAPI + + + + + + +
+
+
+
+
+ +
+
+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/test.py b/test.py deleted file mode 100644 index bc7c757..0000000 --- a/test.py +++ /dev/null @@ -1,11 +0,0 @@ -import pandas as pd - - -data = { - "name": ["a1", "a2", "a3"], - "age": [50, 60, 70] -} - -df = pd.DataFrame(data, index = ["c1", "c2", "c3"]) - -print(df) \ No newline at end of file diff --git a/人与鳄鱼/人与鳄鱼 dash.py b/人与鳄鱼/人与鳄鱼 dash.py new file mode 100644 index 0000000..ee9b960 --- /dev/null +++ b/人与鳄鱼/人与鳄鱼 dash.py @@ -0,0 +1,39 @@ +# Run this app with `python app.py` and +# visit http://127.0.0.1:8050/ in your web browser. + +import dash +import dash_core_components as dcc +import dash_html_components as html +import plotly.express as px +import pandas as pd + +#external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css'] + +#app = dash.Dash(__name__, external_stylesheets=external_stylesheets) +app = dash.Dash(__name__) + +# assume you have a "long-form" data frame +# see https://plotly.com/python/px-arguments/ for more options +df = pd.DataFrame({ + "Fruit": ["Apples", "Oranges", "Bananas", "Apples", "Oranges", "Bananas"], + "Amount": [4, 1, 2, 2, 4, 5], + "City": ["SF", "SF", "SF", "Montreal", "Montreal", "Montreal"] +}) + +fig = px.bar(df, x="Fruit", y="Amount", color="City", barmode="group") + +app.layout = html.Div(children=[ + html.H1(children='Hello Dash'), + + html.Div(children=''' + Dash: A web application framework for Python. + '''), + + dcc.Graph( + id='example-graph', + figure=fig + ) +]) + +if __name__ == '__main__': + app.run_server(debug=True) \ No newline at end of file diff --git a/实例学习pandas2/1.py b/实例学习pandas2/1.py new file mode 100644 index 0000000..dcfa7ad --- /dev/null +++ b/实例学习pandas2/1.py @@ -0,0 +1,11 @@ +import pandas as pd + +chipo = pd.read_csv("chipotle.tsv", sep = '\t') +print(chipo.head(10),chipo.shape[1]) + +c = chipo[['item_name','quantity']].groupby(['item_name'],as_index=False).agg({'quantity':sum}) + +c.sort_values(['quantity'],ascending=False,inplace=True) + +c.head() + diff --git a/实例学习pandas2/chipotle.tsv b/实例学习pandas2/chipotle.tsv new file mode 100644 index 0000000..1ba6958 --- /dev/null +++ b/实例学习pandas2/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/实验/1.1 列表方式打印质数.py b/实验0/1.1 列表方式打印质数.py similarity index 100% rename from 实验/1.1 列表方式打印质数.py rename to 实验0/1.1 列表方式打印质数.py diff --git a/实验/1.1 打印99 乘法表.py b/实验0/1.1 打印99 乘法表.py similarity index 100% rename from 实验/1.1 打印99 乘法表.py rename to 实验0/1.1 打印99 乘法表.py diff --git a/实验/1.1 猜数字.py b/实验0/1.1 猜数字.py similarity index 100% rename from 实验/1.1 猜数字.py rename to 实验0/1.1 猜数字.py diff --git a/实验/Python语言文件操作--学生成绩管理系统.py b/实验0/Python语言文件操作--学生成绩管理系统.py similarity index 100% rename from 实验/Python语言文件操作--学生成绩管理系统.py rename to 实验0/Python语言文件操作--学生成绩管理系统.py diff --git a/实验/students.txt b/实验0/students.txt similarity index 100% rename from 实验/students.txt rename to 实验0/students.txt diff --git a/实验/猪肉价格.py b/实验0/猪肉价格.py similarity index 100% rename from 实验/猪肉价格.py rename to 实验0/猪肉价格.py diff --git a/实验/猪肉价格/bean.png b/实验0/猪肉价格/bean.png similarity index 100% rename from 实验/猪肉价格/bean.png rename to 实验0/猪肉价格/bean.png diff --git a/实验/猪肉价格/bean.txt b/实验0/猪肉价格/bean.txt similarity index 100% rename from 实验/猪肉价格/bean.txt rename to 实验0/猪肉价格/bean.txt diff --git a/实验/猪肉价格/maizeprice.png b/实验0/猪肉价格/maizeprice.png similarity index 100% rename from 实验/猪肉价格/maizeprice.png rename to 实验0/猪肉价格/maizeprice.png diff --git a/实验/猪肉价格/maizeprice.txt b/实验0/猪肉价格/maizeprice.txt similarity index 100% rename from 实验/猪肉价格/maizeprice.txt rename to 实验0/猪肉价格/maizeprice.txt diff --git a/实验/猪肉价格/pig_in.png b/实验0/猪肉价格/pig_in.png similarity index 100% rename from 实验/猪肉价格/pig_in.png rename to 实验0/猪肉价格/pig_in.png diff --git a/实验/猪肉价格/pig_in.txt b/实验0/猪肉价格/pig_in.txt similarity index 100% rename from 实验/猪肉价格/pig_in.txt rename to 实验0/猪肉价格/pig_in.txt diff --git a/实验/猪肉价格/pig_local.png b/实验0/猪肉价格/pig_local.png similarity index 100% rename from 实验/猪肉价格/pig_local.png rename to 实验0/猪肉价格/pig_local.png diff --git a/实验/猪肉价格/pig_local.txt b/实验0/猪肉价格/pig_local.txt similarity index 100% rename from 实验/猪肉价格/pig_local.txt rename to 实验0/猪肉价格/pig_local.txt diff --git a/实验/猪肉价格/pigprice.png b/实验0/猪肉价格/pigprice.png similarity index 100% rename from 实验/猪肉价格/pigprice.png rename to 实验0/猪肉价格/pigprice.png diff --git a/实验/猪肉价格/pigprice.txt b/实验0/猪肉价格/pigprice.txt similarity index 100% rename from 实验/猪肉价格/pigprice.txt rename to 实验0/猪肉价格/pigprice.txt diff --git a/实验/猪肉价格/pork.png b/实验0/猪肉价格/pork.png similarity index 100% rename from 实验/猪肉价格/pork.png rename to 实验0/猪肉价格/pork.png diff --git a/实验/猪肉价格/pork.txt b/实验0/猪肉价格/pork.txt similarity index 100% rename from 实验/猪肉价格/pork.txt rename to 实验0/猪肉价格/pork.txt diff --git a/实验/猪肉价格/time.txt b/实验0/猪肉价格/time.txt similarity index 100% rename from 实验/猪肉价格/time.txt rename to 实验0/猪肉价格/time.txt diff --git a/实验1/1.py b/实验1/1.py new file mode 100644 index 0000000..0f65ea4 --- /dev/null +++ b/实验1/1.py @@ -0,0 +1,15 @@ +import pandas as pd +pop = pd.read_csv('.\state-population.csv') +areas = pd.read_csv('.\state-areas.csv') +abbrevs = pd.read_csv('.\state-abbrevs.csv') +print(pop.head()) +print(areas.head()) +print(abbrevs.head()) + +merged = pd.merge(pop, abbrevs, how='outer', left_on='state/region', right_on='abbreviation') +print(merged.head(3)) +merged = merged.drop('abbreviation', 1) # 丢弃重复信息 +merged.head() + +print("merged.isnull().any()",merged.isnull().any()) +print(merged[merged['population'].isnull()].head()) \ No newline at end of file diff --git a/实验1/births.csv b/实验1/births.csv new file mode 100644 index 0000000..4a5bb7a --- /dev/null +++ b/实验1/births.csv @@ -0,0 +1,15548 @@ +year,month,day,gender,births +1969,1,1,F,4046 +1969,1,1,M,4440 +1969,1,2,F,4454 +1969,1,2,M,4548 +1969,1,3,F,4548 +1969,1,3,M,4994 +1969,1,4,F,4440 +1969,1,4,M,4520 +1969,1,5,F,4192 +1969,1,5,M,4198 +1969,1,6,F,4710 +1969,1,6,M,4850 +1969,1,7,F,4646 +1969,1,7,M,5092 +1969,1,8,F,4800 +1969,1,8,M,4934 +1969,1,9,F,4592 +1969,1,9,M,4842 +1969,1,10,F,4852 +1969,1,10,M,5190 +1969,1,11,F,4580 +1969,1,11,M,4598 +1969,1,12,F,4126 +1969,1,12,M,4324 +1969,1,13,F,4758 +1969,1,13,M,5076 +1969,1,14,F,5070 +1969,1,14,M,5296 +1969,1,15,F,4798 +1969,1,15,M,5096 +1969,1,16,F,4790 +1969,1,16,M,4872 +1969,1,17,F,4944 +1969,1,17,M,5030 +1969,1,18,F,4670 +1969,1,18,M,4642 +1969,1,19,F,4170 +1969,1,19,M,4452 +1969,1,20,F,4884 +1969,1,20,M,4924 +1969,1,21,F,5042 +1969,1,21,M,5432 +1969,1,22,F,4796 +1969,1,22,M,5088 +1969,1,23,F,4794 +1969,1,23,M,4660 +1969,1,24,F,4752 +1969,1,24,M,5046 +1969,1,25,F,4348 +1969,1,25,M,4674 +1969,1,26,F,4230 +1969,1,26,M,4338 +1969,1,27,F,4864 +1969,1,27,M,5046 +1969,1,28,F,4860 +1969,1,28,M,5172 +1969,1,29,F,4500 +1969,1,29,M,4880 +1969,1,30,F,4668 +1969,1,30,M,5006 +1969,1,31,F,4780 +1969,1,31,M,4912 +1969,1,99,F,26 +1969,1,99,M,38 +1969,2,1,F,4394 +1969,2,1,M,4736 +1969,2,2,F,4334 +1969,2,2,M,4480 +1969,2,3,F,4878 +1969,2,3,M,5110 +1969,2,4,F,4796 +1969,2,4,M,5200 +1969,2,5,F,4674 +1969,2,5,M,5002 +1969,2,6,F,4760 +1969,2,6,M,4968 +1969,2,7,F,4940 +1969,2,7,M,5162 +1969,2,8,F,4626 +1969,2,8,M,4636 +1969,2,9,F,4252 +1969,2,9,M,4442 +1969,2,10,F,4958 +1969,2,10,M,4996 +1969,2,11,F,4796 +1969,2,11,M,5060 +1969,2,12,F,4780 +1969,2,12,M,5228 +1969,2,13,F,4850 +1969,2,13,M,4756 +1969,2,14,F,5092 +1969,2,14,M,5262 +1969,2,15,F,4598 +1969,2,15,M,4712 +1969,2,16,F,4118 +1969,2,16,M,4416 +1969,2,17,F,4768 +1969,2,17,M,5054 +1969,2,18,F,4962 +1969,2,18,M,5214 +1969,2,19,F,4788 +1969,2,19,M,5028 +1969,2,20,F,4920 +1969,2,20,M,5062 +1969,2,21,F,4940 +1969,2,21,M,4976 +1969,2,22,F,4484 +1969,2,22,M,4668 +1969,2,23,F,4298 +1969,2,23,M,4406 +1969,2,24,F,4798 +1969,2,24,M,5168 +1969,2,25,F,5196 +1969,2,25,M,5370 +1969,2,26,F,4838 +1969,2,26,M,5210 +1969,2,27,F,4588 +1969,2,27,M,5030 +1969,2,28,F,4792 +1969,2,28,M,4964 +1969,2,29,F,50 +1969,2,29,M,16 +1969,2,30,F,24 +1969,2,30,M,28 +1969,2,31,F,24 +1969,2,31,M,20 +1969,2,99,F,42 +1969,2,99,M,48 +1969,3,1,F,4402 +1969,3,1,M,4784 +1969,3,2,F,4204 +1969,3,2,M,4376 +1969,3,3,F,4874 +1969,3,3,M,5194 +1969,3,4,F,4994 +1969,3,4,M,5270 +1969,3,5,F,4958 +1969,3,5,M,5088 +1969,3,6,F,4640 +1969,3,6,M,5064 +1969,3,7,F,4658 +1969,3,7,M,5290 +1969,3,8,F,4462 +1969,3,8,M,4872 +1969,3,9,F,4146 +1969,3,9,M,4248 +1969,3,10,F,4816 +1969,3,10,M,5076 +1969,3,11,F,5096 +1969,3,11,M,5092 +1969,3,12,F,4800 +1969,3,12,M,4976 +1969,3,13,F,4710 +1969,3,13,M,4930 +1969,3,14,F,4936 +1969,3,14,M,5098 +1969,3,15,F,4300 +1969,3,15,M,4538 +1969,3,16,F,4110 +1969,3,16,M,4226 +1969,3,17,F,4788 +1969,3,17,M,5340 +1969,3,18,F,4910 +1969,3,18,M,5226 +1969,3,19,F,4968 +1969,3,19,M,5096 +1969,3,20,F,4738 +1969,3,20,M,5074 +1969,3,21,F,4832 +1969,3,21,M,5070 +1969,3,22,F,4446 +1969,3,22,M,4516 +1969,3,23,F,4240 +1969,3,23,M,4362 +1969,3,24,F,4730 +1969,3,24,M,5072 +1969,3,25,F,4976 +1969,3,25,M,5296 +1969,3,26,F,4822 +1969,3,26,M,4996 +1969,3,27,F,4628 +1969,3,27,M,5070 +1969,3,28,F,4968 +1969,3,28,M,5358 +1969,3,29,F,4292 +1969,3,29,M,4616 +1969,3,30,F,3986 +1969,3,30,M,4200 +1969,3,31,F,4590 +1969,3,31,M,5002 +1969,3,99,F,64 +1969,3,99,M,50 +1969,4,1,F,4990 +1969,4,1,M,4970 +1969,4,2,F,4766 +1969,4,2,M,5212 +1969,4,3,F,4682 +1969,4,3,M,4848 +1969,4,4,F,4718 +1969,4,4,M,4854 +1969,4,5,F,4384 +1969,4,5,M,4364 +1969,4,6,F,3896 +1969,4,6,M,4112 +1969,4,7,F,4418 +1969,4,7,M,4956 +1969,4,8,F,4930 +1969,4,8,M,5246 +1969,4,9,F,4748 +1969,4,9,M,5104 +1969,4,10,F,4730 +1969,4,10,M,4978 +1969,4,11,F,4848 +1969,4,11,M,5072 +1969,4,12,F,4318 +1969,4,12,M,4622 +1969,4,13,F,3886 +1969,4,13,M,4248 +1969,4,14,F,4726 +1969,4,14,M,4840 +1969,4,15,F,5064 +1969,4,15,M,5364 +1969,4,16,F,4804 +1969,4,16,M,5036 +1969,4,17,F,4832 +1969,4,17,M,5044 +1969,4,18,F,4832 +1969,4,18,M,5040 +1969,4,19,F,4292 +1969,4,19,M,4702 +1969,4,20,F,3760 +1969,4,20,M,4168 +1969,4,21,F,4828 +1969,4,21,M,4782 +1969,4,22,F,5016 +1969,4,22,M,5210 +1969,4,23,F,4660 +1969,4,23,M,5208 +1969,4,24,F,4620 +1969,4,24,M,4852 +1969,4,25,F,4610 +1969,4,25,M,5036 +1969,4,26,F,4338 +1969,4,26,M,4584 +1969,4,27,F,3846 +1969,4,27,M,4120 +1969,4,28,F,4622 +1969,4,28,M,4896 +1969,4,29,F,4622 +1969,4,29,M,5078 +1969,4,30,F,4396 +1969,4,30,M,4742 +1969,4,31,F,28 +1969,4,31,M,24 +1969,4,99,F,50 +1969,4,99,M,66 +1969,5,1,F,4598 +1969,5,1,M,4608 +1969,5,2,F,4708 +1969,5,2,M,5028 +1969,5,3,F,4148 +1969,5,3,M,4620 +1969,5,4,F,3922 +1969,5,4,M,4172 +1969,5,5,F,4854 +1969,5,5,M,5076 +1969,5,6,F,4906 +1969,5,6,M,5058 +1969,5,7,F,4724 +1969,5,7,M,4902 +1969,5,8,F,4564 +1969,5,8,M,4920 +1969,5,9,F,4634 +1969,5,9,M,4728 +1969,5,10,F,4072 +1969,5,10,M,4444 +1969,5,11,F,3998 +1969,5,11,M,4124 +1969,5,12,F,4570 +1969,5,12,M,4736 +1969,5,13,F,4776 +1969,5,13,M,5086 +1969,5,14,F,4402 +1969,5,14,M,4782 +1969,5,15,F,4646 +1969,5,15,M,4878 +1969,5,16,F,4880 +1969,5,16,M,4944 +1969,5,17,F,4376 +1969,5,17,M,4570 +1969,5,18,F,3922 +1969,5,18,M,4106 +1969,5,19,F,4626 +1969,5,19,M,4868 +1969,5,20,F,5034 +1969,5,20,M,5354 +1969,5,21,F,4698 +1969,5,21,M,5068 +1969,5,22,F,4630 +1969,5,22,M,4776 +1969,5,23,F,4548 +1969,5,23,M,5036 +1969,5,24,F,4174 +1969,5,24,M,4384 +1969,5,25,F,4030 +1969,5,25,M,4196 +1969,5,26,F,4752 +1969,5,26,M,5088 +1969,5,27,F,5264 +1969,5,27,M,5088 +1969,5,28,F,4966 +1969,5,28,M,4972 +1969,5,29,F,4878 +1969,5,29,M,5312 +1969,5,30,F,4452 +1969,5,30,M,4702 +1969,5,31,F,4112 +1969,5,31,M,4528 +1969,5,99,F,54 +1969,5,99,M,52 +1969,6,1,F,4174 +1969,6,1,M,4252 +1969,6,2,F,4736 +1969,6,2,M,5126 +1969,6,3,F,5146 +1969,6,3,M,5012 +1969,6,4,F,4750 +1969,6,4,M,5088 +1969,6,5,F,4686 +1969,6,5,M,4902 +1969,6,6,F,4864 +1969,6,6,M,5142 +1969,6,7,F,4342 +1969,6,7,M,4472 +1969,6,8,F,3958 +1969,6,8,M,4268 +1969,6,9,F,4826 +1969,6,9,M,4912 +1969,6,10,F,4920 +1969,6,10,M,5400 +1969,6,11,F,4760 +1969,6,11,M,5190 +1969,6,12,F,4980 +1969,6,12,M,5240 +1969,6,13,F,4772 +1969,6,13,M,5080 +1969,6,14,F,4358 +1969,6,14,M,4562 +1969,6,15,F,4046 +1969,6,15,M,4356 +1969,6,16,F,4628 +1969,6,16,M,5116 +1969,6,17,F,5150 +1969,6,17,M,5144 +1969,6,18,F,4864 +1969,6,18,M,5356 +1969,6,19,F,4630 +1969,6,19,M,5126 +1969,6,20,F,5122 +1969,6,20,M,5302 +1969,6,21,F,4328 +1969,6,21,M,4706 +1969,6,22,F,4136 +1969,6,22,M,4476 +1969,6,23,F,4842 +1969,6,23,M,5038 +1969,6,24,F,5180 +1969,6,24,M,5444 +1969,6,25,F,5196 +1969,6,25,M,5270 +1969,6,26,F,5016 +1969,6,26,M,5328 +1969,6,27,F,5288 +1969,6,27,M,5488 +1969,6,28,F,4610 +1969,6,28,M,4956 +1969,6,29,F,4262 +1969,6,29,M,4538 +1969,6,30,F,5260 +1969,6,30,M,5328 +1969,6,31,F,20 +1969,6,31,M,40 +1969,6,99,F,54 +1969,6,99,M,48 +1969,7,1,F,5378 +1969,7,1,M,5768 +1969,7,2,F,5242 +1969,7,2,M,5516 +1969,7,3,F,5030 +1969,7,3,M,5532 +1969,7,4,F,4504 +1969,7,4,M,4664 +1969,7,5,F,4492 +1969,7,5,M,4756 +1969,7,6,F,4246 +1969,7,6,M,4614 +1969,7,7,F,5138 +1969,7,7,M,5496 +1969,7,8,F,5282 +1969,7,8,M,5560 +1969,7,9,F,5132 +1969,7,9,M,5444 +1969,7,10,F,5166 +1969,7,10,M,5396 +1969,7,11,F,5210 +1969,7,11,M,5476 +1969,7,12,F,4596 +1969,7,12,M,4876 +1969,7,13,F,4454 +1969,7,13,M,4524 +1969,7,14,F,4768 +1969,7,14,M,5474 +1969,7,15,F,5486 +1969,7,15,M,5810 +1969,7,16,F,5086 +1969,7,16,M,5612 +1969,7,17,F,5194 +1969,7,17,M,5474 +1969,7,18,F,5242 +1969,7,18,M,5390 +1969,7,19,F,4838 +1969,7,19,M,4836 +1969,7,20,F,4320 +1969,7,20,M,4620 +1969,7,21,F,4984 +1969,7,21,M,5212 +1969,7,22,F,5408 +1969,7,22,M,5632 +1969,7,23,F,5092 +1969,7,23,M,5376 +1969,7,24,F,5124 +1969,7,24,M,5306 +1969,7,25,F,5126 +1969,7,25,M,5562 +1969,7,26,F,4734 +1969,7,26,M,5052 +1969,7,27,F,4626 +1969,7,27,M,4782 +1969,7,28,F,4990 +1969,7,28,M,5558 +1969,7,29,F,5434 +1969,7,29,M,5668 +1969,7,30,F,5192 +1969,7,30,M,5442 +1969,7,31,F,5076 +1969,7,31,M,5270 +1969,7,99,F,24 +1969,7,99,M,44 +1969,8,1,F,5112 +1969,8,1,M,5618 +1969,8,2,F,4872 +1969,8,2,M,5110 +1969,8,3,F,4464 +1969,8,3,M,4618 +1969,8,4,F,5118 +1969,8,4,M,5332 +1969,8,5,F,5418 +1969,8,5,M,5526 +1969,8,6,F,5232 +1969,8,6,M,5620 +1969,8,7,F,5066 +1969,8,7,M,5316 +1969,8,8,F,5376 +1969,8,8,M,5926 +1969,8,9,F,4968 +1969,8,9,M,5124 +1969,8,10,F,4394 +1969,8,10,M,4712 +1969,8,11,F,5120 +1969,8,11,M,5586 +1969,8,12,F,5542 +1969,8,12,M,5596 +1969,8,13,F,5210 +1969,8,13,M,5592 +1969,8,14,F,5290 +1969,8,14,M,5436 +1969,8,15,F,5298 +1969,8,15,M,5612 +1969,8,16,F,4774 +1969,8,16,M,4998 +1969,8,17,F,4482 +1969,8,17,M,4642 +1969,8,18,F,5120 +1969,8,18,M,5530 +1969,8,19,F,5550 +1969,8,19,M,5860 +1969,8,20,F,5226 +1969,8,20,M,5692 +1969,8,21,F,4962 +1969,8,21,M,5222 +1969,8,22,F,5170 +1969,8,22,M,5416 +1969,8,23,F,4682 +1969,8,23,M,4978 +1969,8,24,F,4438 +1969,8,24,M,4646 +1969,8,25,F,5104 +1969,8,25,M,5482 +1969,8,26,F,5400 +1969,8,26,M,5682 +1969,8,27,F,5076 +1969,8,27,M,5562 +1969,8,28,F,5162 +1969,8,28,M,5454 +1969,8,29,F,5138 +1969,8,29,M,5576 +1969,8,30,F,4680 +1969,8,30,M,5028 +1969,8,31,F,4358 +1969,8,31,M,4628 +1969,8,99,F,54 +1969,8,99,M,58 +1969,9,1,F,4440 +1969,9,1,M,4572 +1969,9,2,F,5174 +1969,9,2,M,5512 +1969,9,3,F,5210 +1969,9,3,M,5834 +1969,9,4,F,5172 +1969,9,4,M,5334 +1969,9,5,F,5032 +1969,9,5,M,5578 +1969,9,6,F,4722 +1969,9,6,M,4988 +1969,9,7,F,4514 +1969,9,7,M,4682 +1969,9,8,F,5030 +1969,9,8,M,5478 +1969,9,9,F,5172 +1969,9,9,M,5426 +1969,9,10,F,5020 +1969,9,10,M,5430 +1969,9,11,F,5042 +1969,9,11,M,5366 +1969,9,12,F,5226 +1969,9,12,M,5526 +1969,9,13,F,4744 +1969,9,13,M,4790 +1969,9,14,F,4552 +1969,9,14,M,4652 +1969,9,15,F,5122 +1969,9,15,M,5606 +1969,9,16,F,5390 +1969,9,16,M,5752 +1969,9,17,F,5268 +1969,9,17,M,5596 +1969,9,18,F,5288 +1969,9,18,M,5588 +1969,9,19,F,5422 +1969,9,19,M,5410 +1969,9,20,F,4930 +1969,9,20,M,5110 +1969,9,21,F,4712 +1969,9,21,M,4656 +1969,9,22,F,5374 +1969,9,22,M,5596 +1969,9,23,F,5504 +1969,9,23,M,5796 +1969,9,24,F,5250 +1969,9,24,M,5648 +1969,9,25,F,5278 +1969,9,25,M,5562 +1969,9,26,F,5508 +1969,9,26,M,5646 +1969,9,27,F,4986 +1969,9,27,M,5184 +1969,9,28,F,4564 +1969,9,28,M,4634 +1969,9,29,F,5192 +1969,9,29,M,5516 +1969,9,30,F,5454 +1969,9,30,M,5684 +1969,9,31,F,38 +1969,9,31,M,30 +1969,9,99,F,60 +1969,9,99,M,48 +1969,10,1,F,5290 +1969,10,1,M,5620 +1969,10,2,F,5322 +1969,10,2,M,5334 +1969,10,3,F,5324 +1969,10,3,M,5598 +1969,10,4,F,4732 +1969,10,4,M,4978 +1969,10,5,F,4464 +1969,10,5,M,4508 +1969,10,6,F,5008 +1969,10,6,M,5310 +1969,10,7,F,5150 +1969,10,7,M,5504 +1969,10,8,F,5194 +1969,10,8,M,5316 +1969,10,9,F,5268 +1969,10,9,M,5442 +1969,10,10,F,5398 +1969,10,10,M,5350 +1969,10,11,F,4640 +1969,10,11,M,4926 +1969,10,12,F,4428 +1969,10,12,M,4586 +1969,10,13,F,4894 +1969,10,13,M,5102 +1969,10,14,F,5048 +1969,10,14,M,5570 +1969,10,15,F,4884 +1969,10,15,M,5236 +1969,10,16,F,4836 +1969,10,16,M,5082 +1969,10,17,F,5088 +1969,10,17,M,5250 +1969,10,18,F,4382 +1969,10,18,M,4790 +1969,10,19,F,4092 +1969,10,19,M,4494 +1969,10,20,F,4876 +1969,10,20,M,5272 +1969,10,21,F,5088 +1969,10,21,M,5586 +1969,10,22,F,5018 +1969,10,22,M,5282 +1969,10,23,F,4790 +1969,10,23,M,5024 +1969,10,24,F,4920 +1969,10,24,M,5090 +1969,10,25,F,4416 +1969,10,25,M,4842 +1969,10,26,F,4300 +1969,10,26,M,4564 +1969,10,27,F,5054 +1969,10,27,M,5318 +1969,10,28,F,5096 +1969,10,28,M,5544 +1969,10,29,F,4920 +1969,10,29,M,5184 +1969,10,30,F,4930 +1969,10,30,M,5180 +1969,10,31,F,4836 +1969,10,31,M,5308 +1969,10,99,F,48 +1969,10,99,M,48 +1969,11,1,F,4676 +1969,11,1,M,4666 +1969,11,2,F,4376 +1969,11,2,M,4528 +1969,11,3,F,4952 +1969,11,3,M,5386 +1969,11,4,F,5114 +1969,11,4,M,5658 +1969,11,5,F,4832 +1969,11,5,M,5188 +1969,11,6,F,5090 +1969,11,6,M,5150 +1969,11,7,F,5172 +1969,11,7,M,5488 +1969,11,8,F,4726 +1969,11,8,M,4952 +1969,11,9,F,4342 +1969,11,9,M,4680 +1969,11,10,F,5024 +1969,11,10,M,5318 +1969,11,11,F,5252 +1969,11,11,M,5626 +1969,11,12,F,4862 +1969,11,12,M,5462 +1969,11,13,F,5028 +1969,11,13,M,5072 +1969,11,14,F,5210 +1969,11,14,M,5186 +1969,11,15,F,4480 +1969,11,15,M,4818 +1969,11,16,F,4290 +1969,11,16,M,4370 +1969,11,17,F,4966 +1969,11,17,M,5320 +1969,11,18,F,5346 +1969,11,18,M,5352 +1969,11,19,F,5000 +1969,11,19,M,5260 +1969,11,20,F,5072 +1969,11,20,M,5186 +1969,11,21,F,4846 +1969,11,21,M,5322 +1969,11,22,F,4576 +1969,11,22,M,4862 +1969,11,23,F,4354 +1969,11,23,M,4512 +1969,11,24,F,5186 +1969,11,24,M,5276 +1969,11,25,F,5318 +1969,11,25,M,5546 +1969,11,26,F,4874 +1969,11,26,M,5200 +1969,11,27,F,4084 +1969,11,27,M,4164 +1969,11,28,F,4838 +1969,11,28,M,5110 +1969,11,29,F,4536 +1969,11,29,M,4796 +1969,11,30,F,4448 +1969,11,30,M,4518 +1969,11,31,F,54 +1969,11,31,M,62 +1969,11,99,F,40 +1969,11,99,M,56 +1969,12,1,F,5124 +1969,12,1,M,5524 +1969,12,2,F,5224 +1969,12,2,M,5512 +1969,12,3,F,4948 +1969,12,3,M,5352 +1969,12,4,F,5042 +1969,12,4,M,5212 +1969,12,5,F,4988 +1969,12,5,M,5440 +1969,12,6,F,4602 +1969,12,6,M,4818 +1969,12,7,F,4178 +1969,12,7,M,4562 +1969,12,8,F,5240 +1969,12,8,M,5406 +1969,12,9,F,5246 +1969,12,9,M,5484 +1969,12,10,F,5108 +1969,12,10,M,5240 +1969,12,11,F,5052 +1969,12,11,M,5248 +1969,12,12,F,5254 +1969,12,12,M,5504 +1969,12,13,F,4680 +1969,12,13,M,4922 +1969,12,14,F,4174 +1969,12,14,M,4588 +1969,12,15,F,5328 +1969,12,15,M,5570 +1969,12,16,F,5368 +1969,12,16,M,5654 +1969,12,17,F,5138 +1969,12,17,M,5508 +1969,12,18,F,5180 +1969,12,18,M,5246 +1969,12,19,F,5366 +1969,12,19,M,5546 +1969,12,20,F,4964 +1969,12,20,M,4858 +1969,12,21,F,4434 +1969,12,21,M,4430 +1969,12,22,F,5194 +1969,12,22,M,5298 +1969,12,23,F,4820 +1969,12,23,M,5036 +1969,12,24,F,4322 +1969,12,24,M,4656 +1969,12,25,F,4136 +1969,12,25,M,4148 +1969,12,26,F,4826 +1969,12,26,M,5084 +1969,12,27,F,4544 +1969,12,27,M,4760 +1969,12,28,F,4344 +1969,12,28,M,4660 +1969,12,29,F,5364 +1969,12,29,M,5616 +1969,12,30,F,5988 +1969,12,30,M,6244 +1969,12,31,F,5602 +1969,12,31,M,5520 +1969,12,99,F,44 +1969,12,99,M,54 +1970,1,1,F,4064 +1970,1,1,M,4308 +1970,1,2,F,4536 +1970,1,2,M,4698 +1970,1,3,F,4398 +1970,1,3,M,4764 +1970,1,4,F,3968 +1970,1,4,M,4652 +1970,1,5,F,4718 +1970,1,5,M,5134 +1970,1,6,F,4998 +1970,1,6,M,5204 +1970,1,7,F,4910 +1970,1,7,M,5110 +1970,1,8,F,4744 +1970,1,8,M,5012 +1970,1,9,F,4828 +1970,1,9,M,5016 +1970,1,10,F,4490 +1970,1,10,M,4780 +1970,1,11,F,4476 +1970,1,11,M,4682 +1970,1,12,F,5056 +1970,1,12,M,5418 +1970,1,13,F,5078 +1970,1,13,M,5502 +1970,1,14,F,4986 +1970,1,14,M,5258 +1970,1,15,F,4764 +1970,1,15,M,5182 +1970,1,16,F,4992 +1970,1,16,M,5284 +1970,1,17,F,4662 +1970,1,17,M,4936 +1970,1,18,F,4378 +1970,1,18,M,4570 +1970,1,19,F,4946 +1970,1,19,M,5178 +1970,1,20,F,5084 +1970,1,20,M,5440 +1970,1,21,F,4908 +1970,1,21,M,5188 +1970,1,22,F,4684 +1970,1,22,M,5002 +1970,1,23,F,5012 +1970,1,23,M,5190 +1970,1,24,F,4746 +1970,1,24,M,4724 +1970,1,25,F,4312 +1970,1,25,M,4480 +1970,1,26,F,4972 +1970,1,26,M,5188 +1970,1,27,F,5090 +1970,1,27,M,5512 +1970,1,28,F,4894 +1970,1,28,M,5294 +1970,1,29,F,4792 +1970,1,29,M,5024 +1970,1,30,F,4856 +1970,1,30,M,5056 +1970,1,31,F,4328 +1970,1,31,M,4684 +1970,1,99,F,84 +1970,1,99,M,54 +1970,2,1,F,4380 +1970,2,1,M,4662 +1970,2,2,F,5128 +1970,2,2,M,5414 +1970,2,3,F,5096 +1970,2,3,M,5616 +1970,2,4,F,4848 +1970,2,4,M,5238 +1970,2,5,F,4802 +1970,2,5,M,4964 +1970,2,6,F,5122 +1970,2,6,M,5098 +1970,2,7,F,4652 +1970,2,7,M,4910 +1970,2,8,F,4226 +1970,2,8,M,4790 +1970,2,9,F,5016 +1970,2,9,M,5210 +1970,2,10,F,5218 +1970,2,10,M,5402 +1970,2,11,F,4990 +1970,2,11,M,5298 +1970,2,12,F,4958 +1970,2,12,M,5100 +1970,2,13,F,4986 +1970,2,13,M,5124 +1970,2,14,F,4652 +1970,2,14,M,4906 +1970,2,15,F,4598 +1970,2,15,M,4538 +1970,2,16,F,5056 +1970,2,16,M,5204 +1970,2,17,F,5160 +1970,2,17,M,5516 +1970,2,18,F,5120 +1970,2,18,M,5352 +1970,2,19,F,4792 +1970,2,19,M,5280 +1970,2,20,F,5214 +1970,2,20,M,5330 +1970,2,21,F,4556 +1970,2,21,M,4758 +1970,2,22,F,4458 +1970,2,22,M,4528 +1970,2,23,F,5000 +1970,2,23,M,5168 +1970,2,24,F,5386 +1970,2,24,M,5396 +1970,2,25,F,5254 +1970,2,25,M,5320 +1970,2,26,F,5204 +1970,2,26,M,5204 +1970,2,27,F,4992 +1970,2,27,M,5272 +1970,2,28,F,4796 +1970,2,28,M,4924 +1970,2,29,F,38 +1970,2,29,M,44 +1970,2,30,F,20 +1970,2,30,M,12 +1970,2,31,F,8 +1970,2,31,M,6 +1970,2,99,F,100 +1970,2,99,M,78 +1970,3,1,F,4390 +1970,3,1,M,4492 +1970,3,2,F,5050 +1970,3,2,M,5120 +1970,3,3,F,5334 +1970,3,3,M,5972 +1970,3,4,F,5116 +1970,3,4,M,5484 +1970,3,5,F,4958 +1970,3,5,M,5300 +1970,3,6,F,5216 +1970,3,6,M,5288 +1970,3,7,F,4568 +1970,3,7,M,4892 +1970,3,8,F,4342 +1970,3,8,M,4584 +1970,3,9,F,5092 +1970,3,9,M,5248 +1970,3,10,F,5222 +1970,3,10,M,5522 +1970,3,11,F,5108 +1970,3,11,M,5302 +1970,3,12,F,5000 +1970,3,12,M,5180 +1970,3,13,F,4890 +1970,3,13,M,5250 +1970,3,14,F,4514 +1970,3,14,M,4936 +1970,3,15,F,4098 +1970,3,15,M,4498 +1970,3,16,F,4820 +1970,3,16,M,5238 +1970,3,17,F,5120 +1970,3,17,M,5574 +1970,3,18,F,4986 +1970,3,18,M,5292 +1970,3,19,F,4802 +1970,3,19,M,5298 +1970,3,20,F,5018 +1970,3,20,M,5188 +1970,3,21,F,4572 +1970,3,21,M,4818 +1970,3,22,F,4296 +1970,3,22,M,4488 +1970,3,23,F,5000 +1970,3,23,M,5334 +1970,3,24,F,5064 +1970,3,24,M,5492 +1970,3,25,F,4888 +1970,3,25,M,5260 +1970,3,26,F,4834 +1970,3,26,M,5052 +1970,3,27,F,4650 +1970,3,27,M,5142 +1970,3,28,F,4258 +1970,3,28,M,4506 +1970,3,29,F,4028 +1970,3,29,M,4286 +1970,3,30,F,4766 +1970,3,30,M,5000 +1970,3,31,F,5098 +1970,3,31,M,5074 +1970,3,99,F,100 +1970,3,99,M,140 +1970,4,1,F,4838 +1970,4,1,M,5164 +1970,4,2,F,4834 +1970,4,2,M,5300 +1970,4,3,F,4936 +1970,4,3,M,5180 +1970,4,4,F,4594 +1970,4,4,M,4640 +1970,4,5,F,4250 +1970,4,5,M,4272 +1970,4,6,F,4956 +1970,4,6,M,5096 +1970,4,7,F,5222 +1970,4,7,M,5252 +1970,4,8,F,4856 +1970,4,8,M,5094 +1970,4,9,F,4798 +1970,4,9,M,5100 +1970,4,10,F,4902 +1970,4,10,M,5170 +1970,4,11,F,4388 +1970,4,11,M,4652 +1970,4,12,F,3970 +1970,4,12,M,4244 +1970,4,13,F,4592 +1970,4,13,M,4878 +1970,4,14,F,4874 +1970,4,14,M,5226 +1970,4,15,F,4846 +1970,4,15,M,4978 +1970,4,16,F,4678 +1970,4,16,M,4990 +1970,4,17,F,4630 +1970,4,17,M,5076 +1970,4,18,F,4286 +1970,4,18,M,4500 +1970,4,19,F,4002 +1970,4,19,M,4172 +1970,4,20,F,4720 +1970,4,20,M,4854 +1970,4,21,F,4996 +1970,4,21,M,5102 +1970,4,22,F,4774 +1970,4,22,M,4940 +1970,4,23,F,4632 +1970,4,23,M,4886 +1970,4,24,F,4848 +1970,4,24,M,5012 +1970,4,25,F,4224 +1970,4,25,M,4600 +1970,4,26,F,3918 +1970,4,26,M,4360 +1970,4,27,F,4834 +1970,4,27,M,5076 +1970,4,28,F,5086 +1970,4,28,M,5214 +1970,4,29,F,4744 +1970,4,29,M,4984 +1970,4,30,F,4700 +1970,4,30,M,4984 +1970,4,31,F,26 +1970,4,31,M,18 +1970,4,99,F,54 +1970,4,99,M,68 +1970,5,1,F,4780 +1970,5,1,M,5166 +1970,5,2,F,4170 +1970,5,2,M,4570 +1970,5,3,F,3774 +1970,5,3,M,4262 +1970,5,4,F,4904 +1970,5,4,M,4848 +1970,5,5,F,4946 +1970,5,5,M,5190 +1970,5,6,F,4848 +1970,5,6,M,4864 +1970,5,7,F,4806 +1970,5,7,M,4826 +1970,5,8,F,4730 +1970,5,8,M,5106 +1970,5,9,F,4398 +1970,5,9,M,4598 +1970,5,10,F,3986 +1970,5,10,M,4442 +1970,5,11,F,5032 +1970,5,11,M,5048 +1970,5,12,F,5148 +1970,5,12,M,5288 +1970,5,13,F,4846 +1970,5,13,M,5180 +1970,5,14,F,4788 +1970,5,14,M,5024 +1970,5,15,F,4920 +1970,5,15,M,5294 +1970,5,16,F,4306 +1970,5,16,M,4640 +1970,5,17,F,3826 +1970,5,17,M,4204 +1970,5,18,F,4842 +1970,5,18,M,5180 +1970,5,19,F,5100 +1970,5,19,M,5336 +1970,5,20,F,4950 +1970,5,20,M,5094 +1970,5,21,F,5036 +1970,5,21,M,5208 +1970,5,22,F,5010 +1970,5,22,M,5352 +1970,5,23,F,4684 +1970,5,23,M,4740 +1970,5,24,F,4256 +1970,5,24,M,4462 +1970,5,25,F,5028 +1970,5,25,M,5048 +1970,5,26,F,5104 +1970,5,26,M,5494 +1970,5,27,F,4770 +1970,5,27,M,5264 +1970,5,28,F,4850 +1970,5,28,M,5190 +1970,5,29,F,4758 +1970,5,29,M,5226 +1970,5,30,F,4318 +1970,5,30,M,4550 +1970,5,31,F,3950 +1970,5,31,M,4438 +1970,5,99,F,72 +1970,5,99,M,72 +1970,6,1,F,5118 +1970,6,1,M,5006 +1970,6,2,F,5242 +1970,6,2,M,5640 +1970,6,3,F,5036 +1970,6,3,M,5234 +1970,6,4,F,4760 +1970,6,4,M,5204 +1970,6,5,F,4818 +1970,6,5,M,5242 +1970,6,6,F,4756 +1970,6,6,M,4760 +1970,6,7,F,4086 +1970,6,7,M,4414 +1970,6,8,F,4770 +1970,6,8,M,5176 +1970,6,9,F,5236 +1970,6,9,M,5528 +1970,6,10,F,5058 +1970,6,10,M,5272 +1970,6,11,F,5146 +1970,6,11,M,5372 +1970,6,12,F,5194 +1970,6,12,M,5580 +1970,6,13,F,4414 +1970,6,13,M,4798 +1970,6,14,F,4230 +1970,6,14,M,4384 +1970,6,15,F,5038 +1970,6,15,M,5178 +1970,6,16,F,5308 +1970,6,16,M,5570 +1970,6,17,F,5108 +1970,6,17,M,5502 +1970,6,18,F,5180 +1970,6,18,M,5340 +1970,6,19,F,5080 +1970,6,19,M,5310 +1970,6,20,F,4768 +1970,6,20,M,4832 +1970,6,21,F,4106 +1970,6,21,M,4462 +1970,6,22,F,4970 +1970,6,22,M,5382 +1970,6,23,F,5156 +1970,6,23,M,5522 +1970,6,24,F,5298 +1970,6,24,M,5346 +1970,6,25,F,5088 +1970,6,25,M,5238 +1970,6,26,F,5158 +1970,6,26,M,5464 +1970,6,27,F,4720 +1970,6,27,M,4952 +1970,6,28,F,4342 +1970,6,28,M,4386 +1970,6,29,F,4996 +1970,6,29,M,5510 +1970,6,30,F,5494 +1970,6,30,M,5884 +1970,6,31,F,14 +1970,6,31,M,14 +1970,6,99,F,102 +1970,6,99,M,86 +1970,7,1,F,5376 +1970,7,1,M,5732 +1970,7,2,F,5370 +1970,7,2,M,5864 +1970,7,3,F,5078 +1970,7,3,M,5438 +1970,7,4,F,4608 +1970,7,4,M,4772 +1970,7,5,F,4492 +1970,7,5,M,4528 +1970,7,6,F,4910 +1970,7,6,M,5608 +1970,7,7,F,5358 +1970,7,7,M,5934 +1970,7,8,F,5298 +1970,7,8,M,5598 +1970,7,9,F,5224 +1970,7,9,M,5492 +1970,7,10,F,5226 +1970,7,10,M,5636 +1970,7,11,F,4566 +1970,7,11,M,5124 +1970,7,12,F,4606 +1970,7,12,M,4578 +1970,7,13,F,5086 +1970,7,13,M,5482 +1970,7,14,F,5620 +1970,7,14,M,6208 +1970,7,15,F,5430 +1970,7,15,M,5648 +1970,7,16,F,5318 +1970,7,16,M,5730 +1970,7,17,F,5334 +1970,7,17,M,5604 +1970,7,18,F,4856 +1970,7,18,M,5110 +1970,7,19,F,4590 +1970,7,19,M,4930 +1970,7,20,F,5348 +1970,7,20,M,5634 +1970,7,21,F,5506 +1970,7,21,M,5942 +1970,7,22,F,5138 +1970,7,22,M,5544 +1970,7,23,F,5340 +1970,7,23,M,5504 +1970,7,24,F,5312 +1970,7,24,M,5644 +1970,7,25,F,4786 +1970,7,25,M,5080 +1970,7,26,F,4508 +1970,7,26,M,4958 +1970,7,27,F,5370 +1970,7,27,M,5682 +1970,7,28,F,5752 +1970,7,28,M,6106 +1970,7,29,F,5556 +1970,7,29,M,5798 +1970,7,30,F,5302 +1970,7,30,M,5754 +1970,7,31,F,5502 +1970,7,31,M,5798 +1970,7,99,F,106 +1970,7,99,M,120 +1970,8,1,F,4966 +1970,8,1,M,5450 +1970,8,2,F,4480 +1970,8,2,M,4802 +1970,8,3,F,5420 +1970,8,3,M,5760 +1970,8,4,F,5346 +1970,8,4,M,5834 +1970,8,5,F,5332 +1970,8,5,M,5540 +1970,8,6,F,5308 +1970,8,6,M,5528 +1970,8,7,F,5376 +1970,8,7,M,5646 +1970,8,8,F,4914 +1970,8,8,M,5318 +1970,8,9,F,4628 +1970,8,9,M,4830 +1970,8,10,F,5178 +1970,8,10,M,5668 +1970,8,11,F,5554 +1970,8,11,M,6012 +1970,8,12,F,5522 +1970,8,12,M,5962 +1970,8,13,F,5350 +1970,8,13,M,5710 +1970,8,14,F,5656 +1970,8,14,M,5882 +1970,8,15,F,4916 +1970,8,15,M,5320 +1970,8,16,F,4766 +1970,8,16,M,4850 +1970,8,17,F,5404 +1970,8,17,M,5628 +1970,8,18,F,5510 +1970,8,18,M,6138 +1970,8,19,F,5402 +1970,8,19,M,5732 +1970,8,20,F,5340 +1970,8,20,M,5528 +1970,8,21,F,5448 +1970,8,21,M,5602 +1970,8,22,F,4720 +1970,8,22,M,5238 +1970,8,23,F,4494 +1970,8,23,M,4780 +1970,8,24,F,5198 +1970,8,24,M,5258 +1970,8,25,F,5566 +1970,8,25,M,5818 +1970,8,26,F,5560 +1970,8,26,M,5746 +1970,8,27,F,5146 +1970,8,27,M,5518 +1970,8,28,F,5460 +1970,8,28,M,5544 +1970,8,29,F,4802 +1970,8,29,M,5240 +1970,8,30,F,4396 +1970,8,30,M,4996 +1970,8,31,F,5528 +1970,8,31,M,5550 +1970,8,99,F,108 +1970,8,99,M,104 +1970,9,1,F,5506 +1970,9,1,M,5844 +1970,9,2,F,5256 +1970,9,2,M,5680 +1970,9,3,F,5366 +1970,9,3,M,5722 +1970,9,4,F,5574 +1970,9,4,M,5792 +1970,9,5,F,4982 +1970,9,5,M,5234 +1970,9,6,F,4542 +1970,9,6,M,4944 +1970,9,7,F,4658 +1970,9,7,M,4906 +1970,9,8,F,5444 +1970,9,8,M,5866 +1970,9,9,F,5740 +1970,9,9,M,6120 +1970,9,10,F,5540 +1970,9,10,M,6114 +1970,9,11,F,5640 +1970,9,11,M,5952 +1970,9,12,F,4960 +1970,9,12,M,5258 +1970,9,13,F,4750 +1970,9,13,M,4794 +1970,9,14,F,5432 +1970,9,14,M,5872 +1970,9,15,F,5806 +1970,9,15,M,6098 +1970,9,16,F,5558 +1970,9,16,M,6146 +1970,9,17,F,5636 +1970,9,17,M,5836 +1970,9,18,F,5606 +1970,9,18,M,5940 +1970,9,19,F,5134 +1970,9,19,M,5358 +1970,9,20,F,4922 +1970,9,20,M,5054 +1970,9,21,F,5558 +1970,9,21,M,6056 +1970,9,22,F,5986 +1970,9,22,M,6480 +1970,9,23,F,5666 +1970,9,23,M,6132 +1970,9,24,F,5574 +1970,9,24,M,5874 +1970,9,25,F,5750 +1970,9,25,M,6166 +1970,9,26,F,4992 +1970,9,26,M,5412 +1970,9,27,F,4800 +1970,9,27,M,5016 +1970,9,28,F,5642 +1970,9,28,M,5698 +1970,9,29,F,5706 +1970,9,29,M,5858 +1970,9,30,F,5416 +1970,9,30,M,5828 +1970,9,31,F,40 +1970,9,31,M,34 +1970,9,99,F,116 +1970,9,99,M,114 +1970,10,1,F,5364 +1970,10,1,M,5418 +1970,10,2,F,5514 +1970,10,2,M,5696 +1970,10,3,F,5116 +1970,10,3,M,5376 +1970,10,4,F,4544 +1970,10,4,M,4828 +1970,10,5,F,5450 +1970,10,5,M,5598 +1970,10,6,F,5786 +1970,10,6,M,5796 +1970,10,7,F,5404 +1970,10,7,M,5616 +1970,10,8,F,5418 +1970,10,8,M,5354 +1970,10,9,F,5528 +1970,10,9,M,5668 +1970,10,10,F,4824 +1970,10,10,M,4966 +1970,10,11,F,4440 +1970,10,11,M,4774 +1970,10,12,F,5438 +1970,10,12,M,5578 +1970,10,13,F,5530 +1970,10,13,M,5706 +1970,10,14,F,5376 +1970,10,14,M,5506 +1970,10,15,F,5180 +1970,10,15,M,5464 +1970,10,16,F,5156 +1970,10,16,M,5548 +1970,10,17,F,4580 +1970,10,17,M,4910 +1970,10,18,F,4380 +1970,10,18,M,4544 +1970,10,19,F,5028 +1970,10,19,M,5472 +1970,10,20,F,5506 +1970,10,20,M,5632 +1970,10,21,F,5282 +1970,10,21,M,5434 +1970,10,22,F,5002 +1970,10,22,M,5476 +1970,10,23,F,5158 +1970,10,23,M,5496 +1970,10,24,F,4618 +1970,10,24,M,4980 +1970,10,25,F,4458 +1970,10,25,M,4808 +1970,10,26,F,5092 +1970,10,26,M,5524 +1970,10,27,F,5634 +1970,10,27,M,5322 +1970,10,28,F,4844 +1970,10,28,M,5418 +1970,10,29,F,4964 +1970,10,29,M,5158 +1970,10,30,F,5198 +1970,10,30,M,5416 +1970,10,31,F,4730 +1970,10,31,M,4862 +1970,10,99,F,266 +1970,10,99,M,270 +1970,11,1,F,4588 +1970,11,1,M,4482 +1970,11,2,F,5102 +1970,11,2,M,5466 +1970,11,3,F,5446 +1970,11,3,M,5700 +1970,11,4,F,5148 +1970,11,4,M,5474 +1970,11,5,F,5120 +1970,11,5,M,5334 +1970,11,6,F,5294 +1970,11,6,M,5428 +1970,11,7,F,4674 +1970,11,7,M,4786 +1970,11,8,F,4366 +1970,11,8,M,4766 +1970,11,9,F,5226 +1970,11,9,M,5336 +1970,11,10,F,5610 +1970,11,10,M,5718 +1970,11,11,F,5272 +1970,11,11,M,5340 +1970,11,12,F,5098 +1970,11,12,M,5606 +1970,11,13,F,5390 +1970,11,13,M,5460 +1970,11,14,F,4822 +1970,11,14,M,5006 +1970,11,15,F,4514 +1970,11,15,M,4768 +1970,11,16,F,5184 +1970,11,16,M,5506 +1970,11,17,F,5346 +1970,11,17,M,5836 +1970,11,18,F,5274 +1970,11,18,M,5640 +1970,11,19,F,5324 +1970,11,19,M,5504 +1970,11,20,F,5440 +1970,11,20,M,5686 +1970,11,21,F,4862 +1970,11,21,M,5064 +1970,11,22,F,4332 +1970,11,22,M,4594 +1970,11,23,F,5158 +1970,11,23,M,5782 +1970,11,24,F,5514 +1970,11,24,M,5638 +1970,11,25,F,5182 +1970,11,25,M,5360 +1970,11,26,F,4274 +1970,11,26,M,4438 +1970,11,27,F,4880 +1970,11,27,M,5158 +1970,11,28,F,4732 +1970,11,28,M,4938 +1970,11,29,F,4474 +1970,11,29,M,4716 +1970,11,30,F,5402 +1970,11,30,M,5724 +1970,11,31,F,14 +1970,11,31,M,20 +1970,11,99,F,150 +1970,11,99,M,118 +1970,12,1,F,5530 +1970,12,1,M,5798 +1970,12,2,F,5514 +1970,12,2,M,5666 +1970,12,3,F,5110 +1970,12,3,M,5258 +1970,12,4,F,5296 +1970,12,4,M,5576 +1970,12,5,F,4710 +1970,12,5,M,4900 +1970,12,6,F,4480 +1970,12,6,M,4792 +1970,12,7,F,5252 +1970,12,7,M,5468 +1970,12,8,F,5402 +1970,12,8,M,5818 +1970,12,9,F,5190 +1970,12,9,M,5518 +1970,12,10,F,5192 +1970,12,10,M,5564 +1970,12,11,F,5224 +1970,12,11,M,5480 +1970,12,12,F,4948 +1970,12,12,M,5092 +1970,12,13,F,4550 +1970,12,13,M,4654 +1970,12,14,F,5438 +1970,12,14,M,5632 +1970,12,15,F,5682 +1970,12,15,M,6202 +1970,12,16,F,5484 +1970,12,16,M,6102 +1970,12,17,F,5442 +1970,12,17,M,5792 +1970,12,18,F,5728 +1970,12,18,M,5980 +1970,12,19,F,5092 +1970,12,19,M,5426 +1970,12,20,F,4586 +1970,12,20,M,4736 +1970,12,21,F,5494 +1970,12,21,M,5878 +1970,12,22,F,5308 +1970,12,22,M,5700 +1970,12,23,F,4854 +1970,12,23,M,5216 +1970,12,24,F,4532 +1970,12,24,M,4588 +1970,12,25,F,4130 +1970,12,25,M,4360 +1970,12,26,F,4560 +1970,12,26,M,4806 +1970,12,27,F,4506 +1970,12,27,M,4808 +1970,12,28,F,5658 +1970,12,28,M,5982 +1970,12,29,F,6204 +1970,12,29,M,6244 +1970,12,30,F,5820 +1970,12,30,M,6112 +1970,12,31,F,5568 +1970,12,31,M,5642 +1970,12,99,F,184 +1970,12,99,M,220 +1971,1,1,F,4214 +1971,1,1,M,4634 +1971,1,2,F,4460 +1971,1,2,M,4766 +1971,1,3,F,4288 +1971,1,3,M,4510 +1971,1,4,F,4868 +1971,1,4,M,5176 +1971,1,5,F,5012 +1971,1,5,M,5526 +1971,1,6,F,4848 +1971,1,6,M,5298 +1971,1,7,F,4974 +1971,1,7,M,5056 +1971,1,8,F,5182 +1971,1,8,M,5304 +1971,1,9,F,4564 +1971,1,9,M,4716 +1971,1,10,F,4480 +1971,1,10,M,4636 +1971,1,11,F,5310 +1971,1,11,M,5514 +1971,1,12,F,5382 +1971,1,12,M,5682 +1971,1,13,F,5118 +1971,1,13,M,5546 +1971,1,14,F,5030 +1971,1,14,M,5334 +1971,1,15,F,5212 +1971,1,15,M,5662 +1971,1,16,F,4648 +1971,1,16,M,4942 +1971,1,17,F,4400 +1971,1,17,M,4406 +1971,1,18,F,5340 +1971,1,18,M,5634 +1971,1,19,F,5542 +1971,1,19,M,5478 +1971,1,20,F,5176 +1971,1,20,M,5422 +1971,1,21,F,5104 +1971,1,21,M,5388 +1971,1,22,F,5176 +1971,1,22,M,5554 +1971,1,23,F,4778 +1971,1,23,M,5024 +1971,1,24,F,4340 +1971,1,24,M,4654 +1971,1,25,F,5280 +1971,1,25,M,5278 +1971,1,26,F,5424 +1971,1,26,M,5572 +1971,1,27,F,5096 +1971,1,27,M,5346 +1971,1,28,F,4910 +1971,1,28,M,5482 +1971,1,29,F,4944 +1971,1,29,M,5330 +1971,1,30,F,4700 +1971,1,30,M,5072 +1971,1,31,F,4474 +1971,1,31,M,4590 +1971,1,99,F,8 +1971,1,99,M,12 +1971,2,1,F,5056 +1971,2,1,M,5354 +1971,2,2,F,5120 +1971,2,2,M,5684 +1971,2,3,F,5048 +1971,2,3,M,5248 +1971,2,4,F,4872 +1971,2,4,M,5298 +1971,2,5,F,5280 +1971,2,5,M,5588 +1971,2,6,F,4572 +1971,2,6,M,4906 +1971,2,7,F,4402 +1971,2,7,M,4636 +1971,2,8,F,5018 +1971,2,8,M,5248 +1971,2,9,F,5170 +1971,2,9,M,5608 +1971,2,10,F,5210 +1971,2,10,M,5144 +1971,2,11,F,5020 +1971,2,11,M,5352 +1971,2,12,F,5310 +1971,2,12,M,5476 +1971,2,13,F,4524 +1971,2,13,M,4790 +1971,2,14,F,4446 +1971,2,14,M,4622 +1971,2,15,F,4928 +1971,2,15,M,5128 +1971,2,16,F,5178 +1971,2,16,M,5336 +1971,2,17,F,5062 +1971,2,17,M,5380 +1971,2,18,F,4970 +1971,2,18,M,5258 +1971,2,19,F,5040 +1971,2,19,M,5432 +1971,2,20,F,4596 +1971,2,20,M,4906 +1971,2,21,F,4388 +1971,2,21,M,4806 +1971,2,22,F,5148 +1971,2,22,M,5604 +1971,2,23,F,5358 +1971,2,23,M,5424 +1971,2,24,F,5194 +1971,2,24,M,5338 +1971,2,25,F,5008 +1971,2,25,M,5394 +1971,2,26,F,5276 +1971,2,26,M,5462 +1971,2,27,F,4690 +1971,2,27,M,4896 +1971,2,28,F,4388 +1971,2,28,M,4422 +1971,2,29,F,4 +1971,2,30,M,2 +1971,2,31,M,6 +1971,2,99,F,14 +1971,2,99,M,14 +1971,3,1,F,5036 +1971,3,1,M,5244 +1971,3,2,F,5016 +1971,3,2,M,5382 +1971,3,3,F,5312 +1971,3,3,M,5322 +1971,3,4,F,5092 +1971,3,4,M,5234 +1971,3,5,F,5020 +1971,3,5,M,5432 +1971,3,6,F,4660 +1971,3,6,M,4800 +1971,3,7,F,4380 +1971,3,7,M,4364 +1971,3,8,F,4854 +1971,3,8,M,5302 +1971,3,9,F,5142 +1971,3,9,M,5624 +1971,3,10,F,5066 +1971,3,10,M,5404 +1971,3,11,F,5010 +1971,3,11,M,5290 +1971,3,12,F,5092 +1971,3,12,M,5382 +1971,3,13,F,4602 +1971,3,13,M,4806 +1971,3,14,F,4336 +1971,3,14,M,4502 +1971,3,15,F,5132 +1971,3,15,M,5216 +1971,3,16,F,5050 +1971,3,16,M,5388 +1971,3,17,F,4970 +1971,3,17,M,5264 +1971,3,18,F,4780 +1971,3,18,M,5018 +1971,3,19,F,5082 +1971,3,19,M,5394 +1971,3,20,F,4554 +1971,3,20,M,4610 +1971,3,21,F,4222 +1971,3,21,M,4466 +1971,3,22,F,4812 +1971,3,22,M,5330 +1971,3,23,F,5030 +1971,3,23,M,5310 +1971,3,24,F,4844 +1971,3,24,M,4964 +1971,3,25,F,4894 +1971,3,25,M,5060 +1971,3,26,F,4772 +1971,3,26,M,5098 +1971,3,27,F,4282 +1971,3,27,M,4514 +1971,3,28,F,4228 +1971,3,28,M,4444 +1971,3,29,F,4918 +1971,3,29,M,5302 +1971,3,30,F,5160 +1971,3,30,M,5256 +1971,3,31,F,4966 +1971,3,31,M,5258 +1971,3,99,F,10 +1971,3,99,M,8 +1971,4,1,F,4818 +1971,4,1,M,4938 +1971,4,2,F,5020 +1971,4,2,M,5246 +1971,4,3,F,4256 +1971,4,3,M,4620 +1971,4,4,F,4090 +1971,4,4,M,4244 +1971,4,5,F,4940 +1971,4,5,M,5042 +1971,4,6,F,5054 +1971,4,6,M,5388 +1971,4,7,F,4790 +1971,4,7,M,4956 +1971,4,8,F,4822 +1971,4,8,M,4940 +1971,4,9,F,4702 +1971,4,9,M,5054 +1971,4,10,F,4116 +1971,4,10,M,4546 +1971,4,11,F,3900 +1971,4,11,M,4190 +1971,4,12,F,4650 +1971,4,12,M,5056 +1971,4,13,F,4930 +1971,4,13,M,5366 +1971,4,14,F,4814 +1971,4,14,M,5130 +1971,4,15,F,4666 +1971,4,15,M,4944 +1971,4,16,F,4850 +1971,4,16,M,5084 +1971,4,17,F,4376 +1971,4,17,M,4538 +1971,4,18,F,3986 +1971,4,18,M,4194 +1971,4,19,F,4962 +1971,4,19,M,4956 +1971,4,20,F,4874 +1971,4,20,M,5398 +1971,4,21,F,4880 +1971,4,21,M,5068 +1971,4,22,F,4708 +1971,4,22,M,5004 +1971,4,23,F,4698 +1971,4,23,M,5086 +1971,4,24,F,4248 +1971,4,24,M,4590 +1971,4,25,F,3808 +1971,4,25,M,4176 +1971,4,26,F,4800 +1971,4,26,M,5156 +1971,4,27,F,5082 +1971,4,27,M,5390 +1971,4,28,F,4714 +1971,4,28,M,4950 +1971,4,29,F,4658 +1971,4,29,M,5054 +1971,4,30,F,4758 +1971,4,30,M,4994 +1971,4,31,F,4 +1971,4,31,M,2 +1971,4,99,F,16 +1971,4,99,M,14 +1971,5,1,F,4312 +1971,5,1,M,4514 +1971,5,2,F,3884 +1971,5,2,M,4026 +1971,5,3,F,4560 +1971,5,3,M,4812 +1971,5,4,F,4660 +1971,5,4,M,5180 +1971,5,5,F,4474 +1971,5,5,M,4836 +1971,5,6,F,4354 +1971,5,6,M,4802 +1971,5,7,F,4808 +1971,5,7,M,4946 +1971,5,8,F,4228 +1971,5,8,M,4382 +1971,5,9,F,4080 +1971,5,9,M,4178 +1971,5,10,F,4688 +1971,5,10,M,4948 +1971,5,11,F,4756 +1971,5,11,M,5244 +1971,5,12,F,4724 +1971,5,12,M,4994 +1971,5,13,F,4592 +1971,5,13,M,4810 +1971,5,14,F,4574 +1971,5,14,M,5080 +1971,5,15,F,4040 +1971,5,15,M,4384 +1971,5,16,F,3862 +1971,5,16,M,4070 +1971,5,17,F,4726 +1971,5,17,M,5070 +1971,5,18,F,5108 +1971,5,18,M,5234 +1971,5,19,F,4750 +1971,5,19,M,5068 +1971,5,20,F,4658 +1971,5,20,M,4910 +1971,5,21,F,4650 +1971,5,21,M,4830 +1971,5,22,F,4090 +1971,5,22,M,4290 +1971,5,23,F,3734 +1971,5,23,M,4088 +1971,5,24,F,4754 +1971,5,24,M,5044 +1971,5,25,F,4984 +1971,5,25,M,5250 +1971,5,26,F,4616 +1971,5,26,M,5006 +1971,5,27,F,4770 +1971,5,27,M,4782 +1971,5,28,F,4750 +1971,5,28,M,5026 +1971,5,29,F,4222 +1971,5,29,M,4370 +1971,5,30,F,3770 +1971,5,30,M,4114 +1971,5,31,F,3946 +1971,5,31,M,4478 +1971,5,99,F,14 +1971,5,99,M,22 +1971,6,1,F,4852 +1971,6,1,M,5060 +1971,6,2,F,4720 +1971,6,2,M,5106 +1971,6,3,F,4812 +1971,6,3,M,5120 +1971,6,4,F,5114 +1971,6,4,M,5214 +1971,6,5,F,4310 +1971,6,5,M,4634 +1971,6,6,F,4168 +1971,6,6,M,4194 +1971,6,7,F,4624 +1971,6,7,M,5156 +1971,6,8,F,5008 +1971,6,8,M,5024 +1971,6,9,F,4778 +1971,6,9,M,5054 +1971,6,10,F,4616 +1971,6,10,M,4808 +1971,6,11,F,4742 +1971,6,11,M,5072 +1971,6,12,F,4504 +1971,6,12,M,4320 +1971,6,13,F,3984 +1971,6,13,M,4112 +1971,6,14,F,4754 +1971,6,14,M,5056 +1971,6,15,F,4704 +1971,6,15,M,5234 +1971,6,16,F,4756 +1971,6,16,M,4994 +1971,6,17,F,4692 +1971,6,17,M,4696 +1971,6,18,F,5072 +1971,6,18,M,4872 +1971,6,19,F,4282 +1971,6,19,M,4420 +1971,6,20,F,4062 +1971,6,20,M,4132 +1971,6,21,F,4768 +1971,6,21,M,4952 +1971,6,22,F,5026 +1971,6,22,M,5096 +1971,6,23,F,4602 +1971,6,23,M,4998 +1971,6,24,F,4740 +1971,6,24,M,4944 +1971,6,25,F,5024 +1971,6,25,M,5262 +1971,6,26,F,4316 +1971,6,26,M,4620 +1971,6,27,F,3950 +1971,6,27,M,4100 +1971,6,28,F,4840 +1971,6,28,M,5146 +1971,6,29,F,5000 +1971,6,29,M,5132 +1971,6,30,F,4960 +1971,6,30,M,5166 +1971,6,31,M,8 +1971,6,99,F,24 +1971,6,99,M,12 +1971,7,1,F,4906 +1971,7,1,M,5224 +1971,7,2,F,4812 +1971,7,2,M,5202 +1971,7,3,F,4308 +1971,7,3,M,4388 +1971,7,4,F,3898 +1971,7,4,M,4228 +1971,7,5,F,4154 +1971,7,5,M,4492 +1971,7,6,F,5058 +1971,7,6,M,5122 +1971,7,7,F,5172 +1971,7,7,M,5370 +1971,7,8,F,4982 +1971,7,8,M,5194 +1971,7,9,F,4948 +1971,7,9,M,5548 +1971,7,10,F,4396 +1971,7,10,M,4764 +1971,7,11,F,4116 +1971,7,11,M,4358 +1971,7,12,F,4710 +1971,7,12,M,5218 +1971,7,13,F,5008 +1971,7,13,M,5498 +1971,7,14,F,5090 +1971,7,14,M,5404 +1971,7,15,F,4900 +1971,7,15,M,5164 +1971,7,16,F,4990 +1971,7,16,M,5560 +1971,7,17,F,4488 +1971,7,17,M,4936 +1971,7,18,F,4142 +1971,7,18,M,4466 +1971,7,19,F,4828 +1971,7,19,M,5146 +1971,7,20,F,4996 +1971,7,20,M,5464 +1971,7,21,F,4906 +1971,7,21,M,5508 +1971,7,22,F,4930 +1971,7,22,M,5334 +1971,7,23,F,5146 +1971,7,23,M,5394 +1971,7,24,F,4510 +1971,7,24,M,4944 +1971,7,25,F,4120 +1971,7,25,M,4530 +1971,7,26,F,5030 +1971,7,26,M,5226 +1971,7,27,F,5328 +1971,7,27,M,5458 +1971,7,28,F,5034 +1971,7,28,M,5296 +1971,7,29,F,4974 +1971,7,29,M,5300 +1971,7,30,F,5218 +1971,7,30,M,5354 +1971,7,31,F,4512 +1971,7,31,M,4796 +1971,7,99,F,24 +1971,7,99,M,14 +1971,8,1,F,4286 +1971,8,1,M,4288 +1971,8,2,F,5038 +1971,8,2,M,5286 +1971,8,3,F,5222 +1971,8,3,M,5718 +1971,8,4,F,5134 +1971,8,4,M,5398 +1971,8,5,F,5024 +1971,8,5,M,4956 +1971,8,6,F,5046 +1971,8,6,M,5212 +1971,8,7,F,4644 +1971,8,7,M,4804 +1971,8,8,F,4438 +1971,8,8,M,4666 +1971,8,9,F,5012 +1971,8,9,M,5324 +1971,8,10,F,5314 +1971,8,10,M,5850 +1971,8,11,F,5118 +1971,8,11,M,5728 +1971,8,12,F,5050 +1971,8,12,M,5232 +1971,8,13,F,5092 +1971,8,13,M,5276 +1971,8,14,F,4678 +1971,8,14,M,4942 +1971,8,15,F,4414 +1971,8,15,M,4422 +1971,8,16,F,5032 +1971,8,16,M,5146 +1971,8,17,F,5128 +1971,8,17,M,5498 +1971,8,18,F,5090 +1971,8,18,M,5352 +1971,8,19,F,5118 +1971,8,19,M,5268 +1971,8,20,F,5236 +1971,8,20,M,5634 +1971,8,21,F,4788 +1971,8,21,M,4866 +1971,8,22,F,4296 +1971,8,22,M,4570 +1971,8,23,F,5120 +1971,8,23,M,5278 +1971,8,24,F,5304 +1971,8,24,M,5400 +1971,8,25,F,5128 +1971,8,25,M,5206 +1971,8,26,F,5100 +1971,8,26,M,5444 +1971,8,27,F,5142 +1971,8,27,M,5252 +1971,8,28,F,4546 +1971,8,28,M,4978 +1971,8,29,F,4164 +1971,8,29,M,4556 +1971,8,30,F,4866 +1971,8,30,M,5202 +1971,8,31,F,5214 +1971,8,31,M,5552 +1971,8,99,F,16 +1971,8,99,M,20 +1971,9,1,F,5088 +1971,9,1,M,5328 +1971,9,2,F,4990 +1971,9,2,M,5228 +1971,9,3,F,5230 +1971,9,3,M,5558 +1971,9,4,F,4782 +1971,9,4,M,4784 +1971,9,5,F,4342 +1971,9,5,M,4510 +1971,9,6,F,4694 +1971,9,6,M,4558 +1971,9,7,F,5252 +1971,9,7,M,5602 +1971,9,8,F,5402 +1971,9,8,M,5586 +1971,9,9,F,5284 +1971,9,9,M,5698 +1971,9,10,F,5346 +1971,9,10,M,5564 +1971,9,11,F,4716 +1971,9,11,M,4826 +1971,9,12,F,4242 +1971,9,12,M,4674 +1971,9,13,F,5188 +1971,9,13,M,5394 +1971,9,14,F,5444 +1971,9,14,M,5590 +1971,9,15,F,5364 +1971,9,15,M,5352 +1971,9,16,F,5210 +1971,9,16,M,5570 +1971,9,17,F,5246 +1971,9,17,M,5758 +1971,9,18,F,4932 +1971,9,18,M,4950 +1971,9,19,F,4450 +1971,9,19,M,4660 +1971,9,20,F,5280 +1971,9,20,M,5422 +1971,9,21,F,5336 +1971,9,21,M,5728 +1971,9,22,F,5164 +1971,9,22,M,5422 +1971,9,23,F,5336 +1971,9,23,M,5372 +1971,9,24,F,5310 +1971,9,24,M,5552 +1971,9,25,F,4738 +1971,9,25,M,4846 +1971,9,26,F,4610 +1971,9,26,M,4770 +1971,9,27,F,5300 +1971,9,27,M,5486 +1971,9,28,F,5548 +1971,9,28,M,5924 +1971,9,29,F,5410 +1971,9,29,M,5580 +1971,9,30,F,5412 +1971,9,30,M,5496 +1971,9,31,F,2 +1971,9,31,M,14 +1971,9,99,F,34 +1971,9,99,M,50 +1971,10,1,F,5352 +1971,10,1,M,5570 +1971,10,2,F,4950 +1971,10,2,M,4656 +1971,10,3,F,4314 +1971,10,3,M,4486 +1971,10,4,F,5236 +1971,10,4,M,5370 +1971,10,5,F,5244 +1971,10,5,M,5630 +1971,10,6,F,5042 +1971,10,6,M,5302 +1971,10,7,F,5116 +1971,10,7,M,5176 +1971,10,8,F,5128 +1971,10,8,M,5268 +1971,10,9,F,4226 +1971,10,9,M,4844 +1971,10,10,F,4348 +1971,10,10,M,4712 +1971,10,11,F,5062 +1971,10,11,M,5204 +1971,10,12,F,5198 +1971,10,12,M,5332 +1971,10,13,F,5070 +1971,10,13,M,5140 +1971,10,14,F,4906 +1971,10,14,M,5280 +1971,10,15,F,5010 +1971,10,15,M,5170 +1971,10,16,F,4450 +1971,10,16,M,4700 +1971,10,17,F,4300 +1971,10,17,M,4204 +1971,10,18,F,5060 +1971,10,18,M,5138 +1971,10,19,F,5074 +1971,10,19,M,5416 +1971,10,20,F,4810 +1971,10,20,M,5060 +1971,10,21,F,4808 +1971,10,21,M,5182 +1971,10,22,F,4970 +1971,10,22,M,5072 +1971,10,23,F,4318 +1971,10,23,M,4414 +1971,10,24,F,4090 +1971,10,24,M,4326 +1971,10,25,F,4666 +1971,10,25,M,4900 +1971,10,26,F,4922 +1971,10,26,M,5132 +1971,10,27,F,4918 +1971,10,27,M,4978 +1971,10,28,F,4812 +1971,10,28,M,4990 +1971,10,29,F,4804 +1971,10,29,M,5118 +1971,10,30,F,4154 +1971,10,30,M,4460 +1971,10,31,F,4282 +1971,10,31,M,4334 +1971,10,99,F,16 +1971,10,99,M,28 +1971,11,1,F,4596 +1971,11,1,M,5040 +1971,11,2,F,4942 +1971,11,2,M,5024 +1971,11,3,F,4712 +1971,11,3,M,5082 +1971,11,4,F,4692 +1971,11,4,M,4824 +1971,11,5,F,4926 +1971,11,5,M,4936 +1971,11,6,F,4272 +1971,11,6,M,4428 +1971,11,7,F,4064 +1971,11,7,M,4168 +1971,11,8,F,4776 +1971,11,8,M,4964 +1971,11,9,F,5026 +1971,11,9,M,5140 +1971,11,10,F,4774 +1971,11,10,M,4916 +1971,11,11,F,4758 +1971,11,11,M,4802 +1971,11,12,F,5002 +1971,11,12,M,5106 +1971,11,13,F,4396 +1971,11,13,M,4452 +1971,11,14,F,4032 +1971,11,14,M,4326 +1971,11,15,F,4916 +1971,11,15,M,4944 +1971,11,16,F,4882 +1971,11,16,M,5256 +1971,11,17,F,4626 +1971,11,17,M,5100 +1971,11,18,F,4708 +1971,11,18,M,5130 +1971,11,19,F,4922 +1971,11,19,M,5214 +1971,11,20,F,4308 +1971,11,20,M,4624 +1971,11,21,F,4074 +1971,11,21,M,4212 +1971,11,22,F,4706 +1971,11,22,M,5188 +1971,11,23,F,4944 +1971,11,23,M,5188 +1971,11,24,F,4742 +1971,11,24,M,4844 +1971,11,25,F,3684 +1971,11,25,M,3882 +1971,11,26,F,4430 +1971,11,26,M,4712 +1971,11,27,F,4048 +1971,11,27,M,4514 +1971,11,28,F,3966 +1971,11,28,M,4274 +1971,11,29,F,4696 +1971,11,29,M,5052 +1971,11,30,F,4584 +1971,11,30,M,5182 +1971,11,31,F,6 +1971,11,31,M,4 +1971,11,99,F,8 +1971,11,99,M,16 +1971,12,1,F,4694 +1971,12,1,M,4940 +1971,12,2,F,4480 +1971,12,2,M,4686 +1971,12,3,F,4578 +1971,12,3,M,4714 +1971,12,4,F,4292 +1971,12,4,M,4500 +1971,12,5,F,4120 +1971,12,5,M,4134 +1971,12,6,F,4790 +1971,12,6,M,4942 +1971,12,7,F,4912 +1971,12,7,M,5114 +1971,12,8,F,4674 +1971,12,8,M,4890 +1971,12,9,F,4622 +1971,12,9,M,4904 +1971,12,10,F,4680 +1971,12,10,M,5198 +1971,12,11,F,4250 +1971,12,11,M,4338 +1971,12,12,F,3874 +1971,12,12,M,4228 +1971,12,13,F,4610 +1971,12,13,M,4892 +1971,12,14,F,4960 +1971,12,14,M,5226 +1971,12,15,F,4856 +1971,12,15,M,5030 +1971,12,16,F,4882 +1971,12,16,M,4888 +1971,12,17,F,4750 +1971,12,17,M,5186 +1971,12,18,F,4184 +1971,12,18,M,4338 +1971,12,19,F,3904 +1971,12,19,M,4048 +1971,12,20,F,4944 +1971,12,20,M,5158 +1971,12,21,F,5102 +1971,12,21,M,5204 +1971,12,22,F,4388 +1971,12,22,M,4630 +1971,12,23,F,3972 +1971,12,23,M,4294 +1971,12,24,F,3746 +1971,12,24,M,4080 +1971,12,25,F,3556 +1971,12,25,M,3684 +1971,12,26,F,3706 +1971,12,26,M,3914 +1971,12,27,F,4692 +1971,12,27,M,5000 +1971,12,28,F,5218 +1971,12,28,M,5276 +1971,12,29,F,4936 +1971,12,29,M,5244 +1971,12,30,F,5048 +1971,12,30,M,5108 +1971,12,31,F,4520 +1971,12,31,M,4654 +1971,12,99,F,18 +1971,12,99,M,10 +1972,1,1,F,3653 +1972,1,1,M,4040 +1972,1,2,F,3844 +1972,1,2,M,3951 +1972,1,3,F,4518 +1972,1,3,M,4418 +1972,1,4,F,4464 +1972,1,4,M,4777 +1972,1,5,F,4333 +1972,1,5,M,4619 +1972,1,6,F,4268 +1972,1,6,M,4470 +1972,1,7,F,4614 +1972,1,7,M,4716 +1972,1,8,F,4037 +1972,1,8,M,4205 +1972,1,9,F,3852 +1972,1,9,M,4059 +1972,1,10,F,4572 +1972,1,10,M,4775 +1972,1,11,F,4855 +1972,1,11,M,4933 +1972,1,12,F,4598 +1972,1,12,M,4714 +1972,1,13,F,4628 +1972,1,13,M,4657 +1972,1,14,F,4663 +1972,1,14,M,4959 +1972,1,15,F,3925 +1972,1,15,M,4110 +1972,1,16,F,3737 +1972,1,16,M,3927 +1972,1,17,F,4477 +1972,1,17,M,4945 +1972,1,18,F,4842 +1972,1,18,M,5030 +1972,1,19,F,4543 +1972,1,19,M,4883 +1972,1,20,F,4474 +1972,1,20,M,4867 +1972,1,21,F,4629 +1972,1,21,M,4739 +1972,1,22,F,4309 +1972,1,22,M,4501 +1972,1,23,F,4046 +1972,1,23,M,4102 +1972,1,24,F,4740 +1972,1,24,M,4906 +1972,1,25,F,4648 +1972,1,25,M,5130 +1972,1,26,F,4540 +1972,1,26,M,4616 +1972,1,27,F,4388 +1972,1,27,M,4668 +1972,1,28,F,4433 +1972,1,28,M,4744 +1972,1,29,F,4078 +1972,1,29,M,4154 +1972,1,30,F,3944 +1972,1,30,M,3982 +1972,1,31,F,4526 +1972,1,31,M,4745 +1972,1,99,F,12 +1972,1,99,M,12 +1972,2,1,F,4768 +1972,2,1,M,4895 +1972,2,2,F,4586 +1972,2,2,M,4784 +1972,2,3,F,4511 +1972,2,3,M,4716 +1972,2,4,F,4553 +1972,2,4,M,4806 +1972,2,5,F,4124 +1972,2,5,M,4199 +1972,2,6,F,3839 +1972,2,6,M,4126 +1972,2,7,F,4520 +1972,2,7,M,4775 +1972,2,8,F,4658 +1972,2,8,M,4940 +1972,2,9,F,4309 +1972,2,9,M,4691 +1972,2,10,F,4515 +1972,2,10,M,4430 +1972,2,11,F,4555 +1972,2,11,M,4802 +1972,2,12,F,4256 +1972,2,12,M,4315 +1972,2,13,F,3895 +1972,2,13,M,4114 +1972,2,14,F,4827 +1972,2,14,M,5037 +1972,2,15,F,4728 +1972,2,15,M,4939 +1972,2,16,F,4667 +1972,2,16,M,4907 +1972,2,17,F,4520 +1972,2,17,M,4905 +1972,2,18,F,4732 +1972,2,18,M,4920 +1972,2,19,F,4035 +1972,2,19,M,4315 +1972,2,20,F,3906 +1972,2,20,M,4030 +1972,2,21,F,4400 +1972,2,21,M,4407 +1972,2,22,F,4660 +1972,2,22,M,5055 +1972,2,23,F,4574 +1972,2,23,M,4783 +1972,2,24,F,4557 +1972,2,24,M,4682 +1972,2,25,F,4608 +1972,2,25,M,4887 +1972,2,26,F,4115 +1972,2,26,M,4486 +1972,2,27,F,3640 +1972,2,27,M,3951 +1972,2,28,F,4505 +1972,2,28,M,4792 +1972,2,29,F,4663 +1972,2,29,M,4919 +1972,2,30,F,2 +1972,2,31,M,2 +1972,2,99,F,8 +1972,2,99,M,16 +1972,3,1,F,4814 +1972,3,1,M,4807 +1972,3,2,F,4523 +1972,3,2,M,4752 +1972,3,3,F,4601 +1972,3,3,M,5004 +1972,3,4,F,4044 +1972,3,4,M,4380 +1972,3,5,F,3793 +1972,3,5,M,3927 +1972,3,6,F,4412 +1972,3,6,M,4714 +1972,3,7,F,4601 +1972,3,7,M,4881 +1972,3,8,F,4543 +1972,3,8,M,4688 +1972,3,9,F,4344 +1972,3,9,M,4561 +1972,3,10,F,4503 +1972,3,10,M,4607 +1972,3,11,F,4089 +1972,3,11,M,4154 +1972,3,12,F,3851 +1972,3,12,M,4014 +1972,3,13,F,4549 +1972,3,13,M,4718 +1972,3,14,F,4637 +1972,3,14,M,4956 +1972,3,15,F,4510 +1972,3,15,M,4736 +1972,3,16,F,4356 +1972,3,16,M,4690 +1972,3,17,F,4567 +1972,3,17,M,4922 +1972,3,18,F,4013 +1972,3,18,M,4063 +1972,3,19,F,3737 +1972,3,19,M,3921 +1972,3,20,F,4365 +1972,3,20,M,4440 +1972,3,21,F,4331 +1972,3,21,M,4729 +1972,3,22,F,4347 +1972,3,22,M,4574 +1972,3,23,F,4231 +1972,3,23,M,4647 +1972,3,24,F,4280 +1972,3,24,M,4613 +1972,3,25,F,3892 +1972,3,25,M,4034 +1972,3,26,F,3664 +1972,3,26,M,3885 +1972,3,27,F,4424 +1972,3,27,M,4659 +1972,3,28,F,4528 +1972,3,28,M,4739 +1972,3,29,F,4221 +1972,3,29,M,4660 +1972,3,30,F,4232 +1972,3,30,M,4412 +1972,3,31,F,4275 +1972,3,31,M,4465 +1972,3,99,F,8 +1972,3,99,M,8 +1972,4,1,F,3766 +1972,4,1,M,3792 +1972,4,2,F,3576 +1972,4,2,M,3783 +1972,4,3,F,4135 +1972,4,3,M,4569 +1972,4,4,F,4726 +1972,4,4,M,4595 +1972,4,5,F,4317 +1972,4,5,M,4570 +1972,4,6,F,4206 +1972,4,6,M,4765 +1972,4,7,F,4389 +1972,4,7,M,4581 +1972,4,8,F,3784 +1972,4,8,M,4107 +1972,4,9,F,3785 +1972,4,9,M,3750 +1972,4,10,F,4204 +1972,4,10,M,4494 +1972,4,11,F,4435 +1972,4,11,M,4745 +1972,4,12,F,4313 +1972,4,12,M,4654 +1972,4,13,F,4409 +1972,4,13,M,4578 +1972,4,14,F,4493 +1972,4,14,M,4699 +1972,4,15,F,3912 +1972,4,15,M,4195 +1972,4,16,F,3632 +1972,4,16,M,3933 +1972,4,17,F,4298 +1972,4,17,M,4561 +1972,4,18,F,4516 +1972,4,18,M,4785 +1972,4,19,F,4363 +1972,4,19,M,4464 +1972,4,20,F,4259 +1972,4,20,M,4569 +1972,4,21,F,4230 +1972,4,21,M,4489 +1972,4,22,F,3749 +1972,4,22,M,4084 +1972,4,23,F,3537 +1972,4,23,M,3798 +1972,4,24,F,4434 +1972,4,24,M,4472 +1972,4,25,F,4496 +1972,4,25,M,4817 +1972,4,26,F,4245 +1972,4,26,M,4399 +1972,4,27,F,4373 +1972,4,27,M,4346 +1972,4,28,F,4261 +1972,4,28,M,4591 +1972,4,29,F,3797 +1972,4,29,M,4010 +1972,4,30,F,3522 +1972,4,30,M,3690 +1972,4,31,F,4 +1972,4,31,M,4 +1972,4,99,F,12 +1972,4,99,M,8 +1972,5,1,F,4393 +1972,5,1,M,4652 +1972,5,2,F,4520 +1972,5,2,M,4813 +1972,5,3,F,4497 +1972,5,3,M,4603 +1972,5,4,F,4248 +1972,5,4,M,4506 +1972,5,5,F,4393 +1972,5,5,M,4526 +1972,5,6,F,3747 +1972,5,6,M,4042 +1972,5,7,F,3692 +1972,5,7,M,3915 +1972,5,8,F,4318 +1972,5,8,M,4658 +1972,5,9,F,4399 +1972,5,9,M,4875 +1972,5,10,F,4191 +1972,5,10,M,4717 +1972,5,11,F,4180 +1972,5,11,M,4566 +1972,5,12,F,4465 +1972,5,12,M,4615 +1972,5,13,F,3885 +1972,5,13,M,4141 +1972,5,14,F,3621 +1972,5,14,M,3908 +1972,5,15,F,4367 +1972,5,15,M,4692 +1972,5,16,F,4597 +1972,5,16,M,4776 +1972,5,17,F,4384 +1972,5,17,M,4723 +1972,5,18,F,4343 +1972,5,18,M,4466 +1972,5,19,F,4379 +1972,5,19,M,4637 +1972,5,20,F,3966 +1972,5,20,M,4066 +1972,5,21,F,3558 +1972,5,21,M,3810 +1972,5,22,F,4516 +1972,5,22,M,4732 +1972,5,23,F,4666 +1972,5,23,M,4989 +1972,5,24,F,4512 +1972,5,24,M,4634 +1972,5,25,F,4539 +1972,5,25,M,4754 +1972,5,26,F,4325 +1972,5,26,M,4661 +1972,5,27,F,3867 +1972,5,27,M,4108 +1972,5,28,F,3695 +1972,5,28,M,3912 +1972,5,29,F,3786 +1972,5,29,M,4066 +1972,5,30,F,4488 +1972,5,30,M,4714 +1972,5,31,F,4588 +1972,5,31,M,4863 +1972,5,99,F,8 +1972,5,99,M,6 +1972,6,1,F,4412 +1972,6,1,M,4765 +1972,6,2,F,4412 +1972,6,2,M,4445 +1972,6,3,F,4003 +1972,6,3,M,4072 +1972,6,4,F,3562 +1972,6,4,M,4025 +1972,6,5,F,4237 +1972,6,5,M,4490 +1972,6,6,F,4542 +1972,6,6,M,4731 +1972,6,7,F,4392 +1972,6,7,M,4691 +1972,6,8,F,4168 +1972,6,8,M,4596 +1972,6,9,F,4414 +1972,6,9,M,4703 +1972,6,10,F,3983 +1972,6,10,M,4152 +1972,6,11,F,3556 +1972,6,11,M,3782 +1972,6,12,F,4225 +1972,6,12,M,4472 +1972,6,13,F,4490 +1972,6,13,M,4714 +1972,6,14,F,4333 +1972,6,14,M,4527 +1972,6,15,F,4423 +1972,6,15,M,4508 +1972,6,16,F,4614 +1972,6,16,M,4584 +1972,6,17,F,3806 +1972,6,17,M,3974 +1972,6,18,F,3624 +1972,6,18,M,3814 +1972,6,19,F,4398 +1972,6,19,M,4452 +1972,6,20,F,4421 +1972,6,20,M,4748 +1972,6,21,F,4234 +1972,6,21,M,4598 +1972,6,22,F,4347 +1972,6,22,M,4192 +1972,6,23,F,4370 +1972,6,23,M,4417 +1972,6,24,F,3769 +1972,6,24,M,4136 +1972,6,25,F,3768 +1972,6,25,M,3819 +1972,6,26,F,4448 +1972,6,26,M,4751 +1972,6,27,F,4620 +1972,6,27,M,4795 +1972,6,28,F,4422 +1972,6,28,M,4853 +1972,6,29,F,4449 +1972,6,29,M,4766 +1972,6,30,F,4323 +1972,6,30,M,4856 +1972,6,31,F,4 +1972,6,99,F,12 +1972,6,99,M,20 +1972,7,1,F,4151 +1972,7,1,M,4342 +1972,7,2,F,3684 +1972,7,2,M,4041 +1972,7,3,F,4279 +1972,7,3,M,4473 +1972,7,4,F,4014 +1972,7,4,M,4079 +1972,7,5,F,4460 +1972,7,5,M,4460 +1972,7,6,F,4438 +1972,7,6,M,4815 +1972,7,7,F,4623 +1972,7,7,M,4887 +1972,7,8,F,4287 +1972,7,8,M,4335 +1972,7,9,F,3714 +1972,7,9,M,3942 +1972,7,10,F,4449 +1972,7,10,M,4813 +1972,7,11,F,4714 +1972,7,11,M,4921 +1972,7,12,F,4779 +1972,7,12,M,4959 +1972,7,13,F,4537 +1972,7,13,M,4853 +1972,7,14,F,4697 +1972,7,14,M,4960 +1972,7,15,F,4303 +1972,7,15,M,4443 +1972,7,16,F,3865 +1972,7,16,M,4103 +1972,7,17,F,4702 +1972,7,17,M,4832 +1972,7,18,F,4709 +1972,7,18,M,5010 +1972,7,19,F,4478 +1972,7,19,M,4757 +1972,7,20,F,4642 +1972,7,20,M,4906 +1972,7,21,F,4794 +1972,7,21,M,4870 +1972,7,22,F,4191 +1972,7,22,M,4404 +1972,7,23,F,3902 +1972,7,23,M,4052 +1972,7,24,F,4592 +1972,7,24,M,4893 +1972,7,25,F,4611 +1972,7,25,M,5051 +1972,7,26,F,4453 +1972,7,26,M,4693 +1972,7,27,F,4747 +1972,7,27,M,4746 +1972,7,28,F,4672 +1972,7,28,M,4834 +1972,7,29,F,4088 +1972,7,29,M,4353 +1972,7,30,F,3743 +1972,7,30,M,3967 +1972,7,31,F,4316 +1972,7,31,M,4824 +1972,7,99,F,6 +1972,7,99,M,10 +1972,8,1,F,4814 +1972,8,1,M,5022 +1972,8,2,F,4639 +1972,8,2,M,4741 +1972,8,3,F,4493 +1972,8,3,M,4807 +1972,8,4,F,4663 +1972,8,4,M,4829 +1972,8,5,F,4168 +1972,8,5,M,4341 +1972,8,6,F,3970 +1972,8,6,M,3992 +1972,8,7,F,4514 +1972,8,7,M,4776 +1972,8,8,F,4769 +1972,8,8,M,5286 +1972,8,9,F,4588 +1972,8,9,M,4893 +1972,8,10,F,4560 +1972,8,10,M,4826 +1972,8,11,F,4518 +1972,8,11,M,4812 +1972,8,12,F,4146 +1972,8,12,M,4562 +1972,8,13,F,3855 +1972,8,13,M,4210 +1972,8,14,F,4598 +1972,8,14,M,4941 +1972,8,15,F,4950 +1972,8,15,M,5179 +1972,8,16,F,4812 +1972,8,16,M,4886 +1972,8,17,F,4589 +1972,8,17,M,5013 +1972,8,18,F,4810 +1972,8,18,M,4988 +1972,8,19,F,4155 +1972,8,19,M,4465 +1972,8,20,F,4052 +1972,8,20,M,4235 +1972,8,21,F,4702 +1972,8,21,M,4967 +1972,8,22,F,4879 +1972,8,22,M,5281 +1972,8,23,F,4541 +1972,8,23,M,4953 +1972,8,24,F,4537 +1972,8,24,M,4873 +1972,8,25,F,4797 +1972,8,25,M,4919 +1972,8,26,F,4174 +1972,8,26,M,4544 +1972,8,27,F,3772 +1972,8,27,M,4250 +1972,8,28,F,4750 +1972,8,28,M,4994 +1972,8,29,F,4869 +1972,8,29,M,5165 +1972,8,30,F,4688 +1972,8,30,M,4895 +1972,8,31,F,4618 +1972,8,31,M,4911 +1972,8,99,F,14 +1972,8,99,M,10 +1972,9,1,F,4649 +1972,9,1,M,4894 +1972,9,2,F,4016 +1972,9,2,M,4392 +1972,9,3,F,3902 +1972,9,3,M,4165 +1972,9,4,F,3936 +1972,9,4,M,4258 +1972,9,5,F,4673 +1972,9,5,M,4987 +1972,9,6,F,4883 +1972,9,6,M,4936 +1972,9,7,F,4863 +1972,9,7,M,4961 +1972,9,8,F,4915 +1972,9,8,M,5228 +1972,9,9,F,4381 +1972,9,9,M,4445 +1972,9,10,F,4169 +1972,9,10,M,4064 +1972,9,11,F,4714 +1972,9,11,M,5057 +1972,9,12,F,4854 +1972,9,12,M,5165 +1972,9,13,F,4822 +1972,9,13,M,4972 +1972,9,14,F,4892 +1972,9,14,M,5143 +1972,9,15,F,5038 +1972,9,15,M,5241 +1972,9,16,F,4573 +1972,9,16,M,4628 +1972,9,17,F,4088 +1972,9,17,M,4451 +1972,9,18,F,4882 +1972,9,18,M,5023 +1972,9,19,F,4927 +1972,9,19,M,5146 +1972,9,20,F,4910 +1972,9,20,M,5012 +1972,9,21,F,4715 +1972,9,21,M,5009 +1972,9,22,F,4831 +1972,9,22,M,4951 +1972,9,23,F,4306 +1972,9,23,M,4471 +1972,9,24,F,4056 +1972,9,24,M,4399 +1972,9,25,F,4902 +1972,9,25,M,4933 +1972,9,26,F,4927 +1972,9,26,M,5226 +1972,9,27,F,4895 +1972,9,27,M,5017 +1972,9,28,F,4785 +1972,9,28,M,4809 +1972,9,29,F,4786 +1972,9,29,M,4890 +1972,9,30,F,4358 +1972,9,30,M,4493 +1972,9,31,F,2 +1972,9,31,M,2 +1972,9,99,F,32 +1972,9,99,M,26 +1972,10,1,F,3818 +1972,10,1,M,4164 +1972,10,2,F,4681 +1972,10,2,M,4950 +1972,10,3,F,4617 +1972,10,3,M,4903 +1972,10,4,F,4785 +1972,10,4,M,4738 +1972,10,5,F,4635 +1972,10,5,M,4808 +1972,10,6,F,4796 +1972,10,6,M,4933 +1972,10,7,F,4158 +1972,10,7,M,4251 +1972,10,8,F,3825 +1972,10,8,M,4079 +1972,10,9,F,4430 +1972,10,9,M,4725 +1972,10,10,F,4738 +1972,10,10,M,5028 +1972,10,11,F,4464 +1972,10,11,M,4696 +1972,10,12,F,4707 +1972,10,12,M,4789 +1972,10,13,F,4471 +1972,10,13,M,4812 +1972,10,14,F,4093 +1972,10,14,M,4133 +1972,10,15,F,3920 +1972,10,15,M,3964 +1972,10,16,F,4525 +1972,10,16,M,4579 +1972,10,17,F,4587 +1972,10,17,M,4816 +1972,10,18,F,4465 +1972,10,18,M,4592 +1972,10,19,F,4367 +1972,10,19,M,4640 +1972,10,20,F,4447 +1972,10,20,M,4677 +1972,10,21,F,3923 +1972,10,21,M,4057 +1972,10,22,F,3734 +1972,10,22,M,3971 +1972,10,23,F,4288 +1972,10,23,M,4703 +1972,10,24,F,4485 +1972,10,24,M,4863 +1972,10,25,F,4176 +1972,10,25,M,4876 +1972,10,26,F,4353 +1972,10,26,M,4486 +1972,10,27,F,4430 +1972,10,27,M,4600 +1972,10,28,F,3969 +1972,10,28,M,4026 +1972,10,29,F,3881 +1972,10,29,M,4026 +1972,10,30,F,4305 +1972,10,30,M,4629 +1972,10,31,F,4537 +1972,10,31,M,4755 +1972,10,99,F,14 +1972,10,99,M,10 +1972,11,1,F,4459 +1972,11,1,M,4562 +1972,11,2,F,4372 +1972,11,2,M,4465 +1972,11,3,F,4534 +1972,11,3,M,4784 +1972,11,4,F,3986 +1972,11,4,M,4113 +1972,11,5,F,3602 +1972,11,5,M,3863 +1972,11,6,F,4371 +1972,11,6,M,4885 +1972,11,7,F,4486 +1972,11,7,M,4943 +1972,11,8,F,4485 +1972,11,8,M,4755 +1972,11,9,F,4426 +1972,11,9,M,4638 +1972,11,10,F,4434 +1972,11,10,M,4807 +1972,11,11,F,4199 +1972,11,11,M,4325 +1972,11,12,F,3886 +1972,11,12,M,3922 +1972,11,13,F,4385 +1972,11,13,M,4615 +1972,11,14,F,4635 +1972,11,14,M,4811 +1972,11,15,F,4345 +1972,11,15,M,4706 +1972,11,16,F,4536 +1972,11,16,M,4516 +1972,11,17,F,4491 +1972,11,17,M,4800 +1972,11,18,F,3900 +1972,11,18,M,4182 +1972,11,19,F,3773 +1972,11,19,M,4033 +1972,11,20,F,4731 +1972,11,20,M,4775 +1972,11,21,F,4541 +1972,11,21,M,5005 +1972,11,22,F,4417 +1972,11,22,M,4740 +1972,11,23,F,3677 +1972,11,23,M,3726 +1972,11,24,F,4312 +1972,11,24,M,4291 +1972,11,25,F,4077 +1972,11,25,M,4230 +1972,11,26,F,3891 +1972,11,26,M,3899 +1972,11,27,F,4515 +1972,11,27,M,4859 +1972,11,28,F,4702 +1972,11,28,M,4961 +1972,11,29,F,4562 +1972,11,29,M,4616 +1972,11,30,F,4276 +1972,11,30,M,4780 +1972,11,31,F,8 +1972,11,31,M,4 +1972,11,99,F,22 +1972,11,99,M,22 +1972,12,1,F,4486 +1972,12,1,M,4574 +1972,12,2,F,3976 +1972,12,2,M,4133 +1972,12,3,F,3915 +1972,12,3,M,3968 +1972,12,4,F,4540 +1972,12,4,M,4756 +1972,12,5,F,4708 +1972,12,5,M,4969 +1972,12,6,F,4432 +1972,12,6,M,4847 +1972,12,7,F,4528 +1972,12,7,M,4598 +1972,12,8,F,4329 +1972,12,8,M,4681 +1972,12,9,F,4059 +1972,12,9,M,4182 +1972,12,10,F,3899 +1972,12,10,M,3983 +1972,12,11,F,4576 +1972,12,11,M,4863 +1972,12,12,F,4882 +1972,12,12,M,5020 +1972,12,13,F,4565 +1972,12,13,M,4791 +1972,12,14,F,4659 +1972,12,14,M,4618 +1972,12,15,F,4701 +1972,12,15,M,5005 +1972,12,16,F,4226 +1972,12,16,M,4450 +1972,12,17,F,3875 +1972,12,17,M,3895 +1972,12,18,F,4864 +1972,12,18,M,5237 +1972,12,19,F,4968 +1972,12,19,M,5296 +1972,12,20,F,4904 +1972,12,20,M,4896 +1972,12,21,F,4611 +1972,12,21,M,4820 +1972,12,22,F,4474 +1972,12,22,M,4293 +1972,12,23,F,3775 +1972,12,23,M,3791 +1972,12,24,F,3411 +1972,12,24,M,3766 +1972,12,25,F,3586 +1972,12,25,M,3655 +1972,12,26,F,4331 +1972,12,26,M,4454 +1972,12,27,F,4702 +1972,12,27,M,5130 +1972,12,28,F,4813 +1972,12,28,M,5210 +1972,12,29,F,4966 +1972,12,29,M,5060 +1972,12,30,F,4067 +1972,12,30,M,4490 +1972,12,31,F,3710 +1972,12,31,M,4102 +1972,12,99,F,20 +1972,12,99,M,24 +1973,1,1,F,3694 +1973,1,1,M,3697 +1973,1,2,F,4058 +1973,1,2,M,4184 +1973,1,3,F,4453 +1973,1,3,M,4513 +1973,1,4,F,4284 +1973,1,4,M,4595 +1973,1,5,F,4371 +1973,1,5,M,4488 +1973,1,6,F,3763 +1973,1,6,M,4003 +1973,1,7,F,3544 +1973,1,7,M,3765 +1973,1,8,F,4274 +1973,1,8,M,4312 +1973,1,9,F,4309 +1973,1,9,M,4397 +1973,1,10,F,4222 +1973,1,10,M,4457 +1973,1,11,F,4261 +1973,1,11,M,4689 +1973,1,12,F,4538 +1973,1,12,M,4647 +1973,1,13,F,3975 +1973,1,13,M,4209 +1973,1,14,F,3731 +1973,1,14,M,3829 +1973,1,15,F,4450 +1973,1,15,M,4453 +1973,1,16,F,4541 +1973,1,16,M,4808 +1973,1,17,F,4385 +1973,1,17,M,4811 +1973,1,18,F,4353 +1973,1,18,M,4711 +1973,1,19,F,4508 +1973,1,19,M,4879 +1973,1,20,F,3891 +1973,1,20,M,4131 +1973,1,21,F,3743 +1973,1,21,M,3876 +1973,1,22,F,4387 +1973,1,22,M,4652 +1973,1,23,F,4540 +1973,1,23,M,4732 +1973,1,24,F,4307 +1973,1,24,M,4579 +1973,1,25,F,4423 +1973,1,25,M,4536 +1973,1,26,F,4418 +1973,1,26,M,4619 +1973,1,27,F,3872 +1973,1,27,M,4150 +1973,1,28,F,3817 +1973,1,28,M,4010 +1973,1,29,F,4276 +1973,1,29,M,4713 +1973,1,30,F,4287 +1973,1,30,M,4472 +1973,1,31,F,4460 +1973,1,31,M,4377 +1973,1,99,F,28 +1973,1,99,M,26 +1973,2,1,F,4209 +1973,2,1,M,4286 +1973,2,2,F,4308 +1973,2,2,M,4569 +1973,2,3,F,4079 +1973,2,3,M,4048 +1973,2,4,F,3665 +1973,2,4,M,3822 +1973,2,5,F,4428 +1973,2,5,M,4585 +1973,2,6,F,4443 +1973,2,6,M,4789 +1973,2,7,F,4317 +1973,2,7,M,4511 +1973,2,8,F,4328 +1973,2,8,M,4471 +1973,2,9,F,4376 +1973,2,9,M,4629 +1973,2,10,F,3907 +1973,2,10,M,4214 +1973,2,11,F,3657 +1973,2,11,M,3754 +1973,2,12,F,4329 +1973,2,12,M,4576 +1973,2,13,F,4308 +1973,2,13,M,4588 +1973,2,14,F,4474 +1973,2,14,M,4649 +1973,2,15,F,4238 +1973,2,15,M,4667 +1973,2,16,F,4370 +1973,2,16,M,4571 +1973,2,17,F,3944 +1973,2,17,M,4210 +1973,2,18,F,3580 +1973,2,18,M,3829 +1973,2,19,F,4128 +1973,2,19,M,4485 +1973,2,20,F,4493 +1973,2,20,M,4647 +1973,2,21,F,4455 +1973,2,21,M,4887 +1973,2,22,F,4291 +1973,2,22,M,4525 +1973,2,23,F,4376 +1973,2,23,M,4557 +1973,2,24,F,4139 +1973,2,24,M,4211 +1973,2,25,F,3852 +1973,2,25,M,4041 +1973,2,26,F,4321 +1973,2,26,M,4546 +1973,2,27,F,4329 +1973,2,27,M,4698 +1973,2,28,F,4351 +1973,2,28,M,4583 +1973,2,29,F,3 +1973,2,29,M,4 +1973,2,99,F,20 +1973,2,99,M,22 +1973,3,1,F,4348 +1973,3,1,M,4701 +1973,3,2,F,4524 +1973,3,2,M,4726 +1973,3,3,F,4219 +1973,3,3,M,4212 +1973,3,4,F,3772 +1973,3,4,M,4062 +1973,3,5,F,4344 +1973,3,5,M,4638 +1973,3,6,F,4634 +1973,3,6,M,4776 +1973,3,7,F,4443 +1973,3,7,M,4644 +1973,3,8,F,4549 +1973,3,8,M,4487 +1973,3,9,F,4520 +1973,3,9,M,4580 +1973,3,10,F,4073 +1973,3,10,M,4142 +1973,3,11,F,3805 +1973,3,11,M,3870 +1973,3,12,F,4466 +1973,3,12,M,4725 +1973,3,13,F,4523 +1973,3,13,M,4888 +1973,3,14,F,4430 +1973,3,14,M,4483 +1973,3,15,F,4423 +1973,3,15,M,4669 +1973,3,16,F,4393 +1973,3,16,M,4506 +1973,3,17,F,3919 +1973,3,17,M,4141 +1973,3,18,F,3644 +1973,3,18,M,3929 +1973,3,19,F,4250 +1973,3,19,M,4478 +1973,3,20,F,4330 +1973,3,20,M,4722 +1973,3,21,F,4321 +1973,3,21,M,4476 +1973,3,22,F,4314 +1973,3,22,M,4490 +1973,3,23,F,4263 +1973,3,23,M,4707 +1973,3,24,F,3929 +1973,3,24,M,3919 +1973,3,25,F,3807 +1973,3,25,M,3796 +1973,3,26,F,4264 +1973,3,26,M,4704 +1973,3,27,F,4493 +1973,3,27,M,4617 +1973,3,28,F,4320 +1973,3,28,M,4432 +1973,3,29,F,4308 +1973,3,29,M,4528 +1973,3,30,F,4321 +1973,3,30,M,4598 +1973,3,31,F,3810 +1973,3,31,M,4077 +1973,3,99,F,12 +1973,3,99,M,12 +1973,4,1,F,3709 +1973,4,1,M,3786 +1973,4,2,F,4328 +1973,4,2,M,4578 +1973,4,3,F,4284 +1973,4,3,M,4751 +1973,4,4,F,4206 +1973,4,4,M,4560 +1973,4,5,F,4100 +1973,4,5,M,4407 +1973,4,6,F,4243 +1973,4,6,M,4372 +1973,4,7,F,3932 +1973,4,7,M,4128 +1973,4,8,F,3612 +1973,4,8,M,3743 +1973,4,9,F,4160 +1973,4,9,M,4289 +1973,4,10,F,4378 +1973,4,10,M,4465 +1973,4,11,F,4295 +1973,4,11,M,4486 +1973,4,12,F,4154 +1973,4,12,M,4459 +1973,4,13,F,4111 +1973,4,13,M,4505 +1973,4,14,F,3763 +1973,4,14,M,3682 +1973,4,15,F,3468 +1973,4,15,M,3699 +1973,4,16,F,4212 +1973,4,16,M,4447 +1973,4,17,F,4449 +1973,4,17,M,4468 +1973,4,18,F,4325 +1973,4,18,M,4566 +1973,4,19,F,4279 +1973,4,19,M,4393 +1973,4,20,F,4020 +1973,4,20,M,4520 +1973,4,21,F,3663 +1973,4,21,M,3916 +1973,4,22,F,3323 +1973,4,22,M,3631 +1973,4,23,F,4112 +1973,4,23,M,4260 +1973,4,24,F,4162 +1973,4,24,M,4595 +1973,4,25,F,4060 +1973,4,25,M,4292 +1973,4,26,F,4175 +1973,4,26,M,4333 +1973,4,27,F,4132 +1973,4,27,M,4405 +1973,4,28,F,3612 +1973,4,28,M,3778 +1973,4,29,F,3249 +1973,4,29,M,3508 +1973,4,30,F,4131 +1973,4,30,M,4383 +1973,4,31,M,2 +1973,4,99,F,16 +1973,4,99,M,12 +1973,5,1,F,4370 +1973,5,1,M,4476 +1973,5,2,F,3971 +1973,5,2,M,4530 +1973,5,3,F,4122 +1973,5,3,M,4199 +1973,5,4,F,3980 +1973,5,4,M,4316 +1973,5,5,F,3558 +1973,5,5,M,3988 +1973,5,6,F,3378 +1973,5,6,M,3514 +1973,5,7,F,4038 +1973,5,7,M,4236 +1973,5,8,F,4423 +1973,5,8,M,4557 +1973,5,9,F,4338 +1973,5,9,M,4288 +1973,5,10,F,4012 +1973,5,10,M,4426 +1973,5,11,F,4202 +1973,5,11,M,4417 +1973,5,12,F,3790 +1973,5,12,M,3649 +1973,5,13,F,3550 +1973,5,13,M,3439 +1973,5,14,F,3985 +1973,5,14,M,4251 +1973,5,15,F,4311 +1973,5,15,M,4465 +1973,5,16,F,4127 +1973,5,16,M,4418 +1973,5,17,F,4136 +1973,5,17,M,4413 +1973,5,18,F,4100 +1973,5,18,M,4484 +1973,5,19,F,3674 +1973,5,19,M,4025 +1973,5,20,F,3548 +1973,5,20,M,3617 +1973,5,21,F,4222 +1973,5,21,M,4439 +1973,5,22,F,4230 +1973,5,22,M,4537 +1973,5,23,F,4182 +1973,5,23,M,4324 +1973,5,24,F,4043 +1973,5,24,M,4386 +1973,5,25,F,4380 +1973,5,25,M,4717 +1973,5,26,F,3624 +1973,5,26,M,4084 +1973,5,27,F,3540 +1973,5,27,M,3639 +1973,5,28,F,3517 +1973,5,28,M,3786 +1973,5,29,F,4293 +1973,5,29,M,4616 +1973,5,30,F,4176 +1973,5,30,M,4609 +1973,5,31,F,4231 +1973,5,31,M,4357 +1973,5,99,F,10 +1973,5,99,M,4 +1973,6,1,F,4353 +1973,6,1,M,4502 +1973,6,2,F,3777 +1973,6,2,M,4069 +1973,6,3,F,3482 +1973,6,3,M,3727 +1973,6,4,F,4220 +1973,6,4,M,4285 +1973,6,5,F,4280 +1973,6,5,M,4618 +1973,6,6,F,4160 +1973,6,6,M,4546 +1973,6,7,F,4244 +1973,6,7,M,4542 +1973,6,8,F,4131 +1973,6,8,M,4670 +1973,6,9,F,3847 +1973,6,9,M,4083 +1973,6,10,F,3561 +1973,6,10,M,3769 +1973,6,11,F,4203 +1973,6,11,M,4693 +1973,6,12,F,4423 +1973,6,12,M,4603 +1973,6,13,F,4115 +1973,6,13,M,4615 +1973,6,14,F,4197 +1973,6,14,M,4428 +1973,6,15,F,4300 +1973,6,15,M,4522 +1973,6,16,F,3908 +1973,6,16,M,4117 +1973,6,17,F,3617 +1973,6,17,M,3788 +1973,6,18,F,4358 +1973,6,18,M,4601 +1973,6,19,F,4357 +1973,6,19,M,4689 +1973,6,20,F,4257 +1973,6,20,M,4445 +1973,6,21,F,4344 +1973,6,21,M,4438 +1973,6,22,F,4337 +1973,6,22,M,4591 +1973,6,23,F,3812 +1973,6,23,M,3970 +1973,6,24,F,3543 +1973,6,24,M,3738 +1973,6,25,F,4228 +1973,6,25,M,4562 +1973,6,26,F,4417 +1973,6,26,M,4664 +1973,6,27,F,4404 +1973,6,27,M,4608 +1973,6,28,F,4314 +1973,6,28,M,4754 +1973,6,29,F,4396 +1973,6,29,M,4612 +1973,6,30,F,3912 +1973,6,30,M,4019 +1973,6,31,F,2 +1973,6,31,M,6 +1973,6,99,F,14 +1973,6,99,M,12 +1973,7,1,F,3611 +1973,7,1,M,3950 +1973,7,2,F,4445 +1973,7,2,M,4558 +1973,7,3,F,4686 +1973,7,3,M,5143 +1973,7,4,F,3861 +1973,7,4,M,4049 +1973,7,5,F,4533 +1973,7,5,M,4635 +1973,7,6,F,4576 +1973,7,6,M,4874 +1973,7,7,F,3956 +1973,7,7,M,4396 +1973,7,8,F,3879 +1973,7,8,M,3908 +1973,7,9,F,4623 +1973,7,9,M,4703 +1973,7,10,F,4655 +1973,7,10,M,4972 +1973,7,11,F,4482 +1973,7,11,M,4715 +1973,7,12,F,4284 +1973,7,12,M,4655 +1973,7,13,F,4345 +1973,7,13,M,4683 +1973,7,14,F,4115 +1973,7,14,M,4330 +1973,7,15,F,3640 +1973,7,15,M,3911 +1973,7,16,F,4483 +1973,7,16,M,4607 +1973,7,17,F,4559 +1973,7,17,M,5080 +1973,7,18,F,4335 +1973,7,18,M,4937 +1973,7,19,F,4526 +1973,7,19,M,4764 +1973,7,20,F,4557 +1973,7,20,M,4913 +1973,7,21,F,4009 +1973,7,21,M,4286 +1973,7,22,F,3917 +1973,7,22,M,3727 +1973,7,23,F,4574 +1973,7,23,M,4662 +1973,7,24,F,4484 +1973,7,24,M,4966 +1973,7,25,F,4665 +1973,7,25,M,4828 +1973,7,26,F,4613 +1973,7,26,M,4719 +1973,7,27,F,4618 +1973,7,27,M,4798 +1973,7,28,F,4117 +1973,7,28,M,4307 +1973,7,29,F,3764 +1973,7,29,M,3981 +1973,7,30,F,4502 +1973,7,30,M,4723 +1973,7,31,F,4613 +1973,7,31,M,5089 +1973,7,99,F,24 +1973,7,99,M,14 +1973,8,1,F,4588 +1973,8,1,M,4849 +1973,8,2,F,4654 +1973,8,2,M,4745 +1973,8,3,F,4613 +1973,8,3,M,4808 +1973,8,4,F,4021 +1973,8,4,M,4074 +1973,8,5,F,3649 +1973,8,5,M,3967 +1973,8,6,F,4598 +1973,8,6,M,4846 +1973,8,7,F,4817 +1973,8,7,M,4953 +1973,8,8,F,4672 +1973,8,8,M,4926 +1973,8,9,F,4521 +1973,8,9,M,4897 +1973,8,10,F,4815 +1973,8,10,M,5014 +1973,8,11,F,4034 +1973,8,11,M,4158 +1973,8,12,F,3939 +1973,8,12,M,3969 +1973,8,13,F,4474 +1973,8,13,M,4734 +1973,8,14,F,4687 +1973,8,14,M,5155 +1973,8,15,F,4608 +1973,8,15,M,4932 +1973,8,16,F,4458 +1973,8,16,M,4825 +1973,8,17,F,4639 +1973,8,17,M,4670 +1973,8,18,F,3988 +1973,8,18,M,4292 +1973,8,19,F,3885 +1973,8,19,M,3896 +1973,8,20,F,4739 +1973,8,20,M,4728 +1973,8,21,F,4750 +1973,8,21,M,4891 +1973,8,22,F,4525 +1973,8,22,M,4892 +1973,8,23,F,4400 +1973,8,23,M,4649 +1973,8,24,F,4580 +1973,8,24,M,4768 +1973,8,25,F,4099 +1973,8,25,M,4221 +1973,8,26,F,3927 +1973,8,26,M,4051 +1973,8,27,F,4627 +1973,8,27,M,4870 +1973,8,28,F,4769 +1973,8,28,M,4932 +1973,8,29,F,4539 +1973,8,29,M,4869 +1973,8,30,F,4635 +1973,8,30,M,4921 +1973,8,31,F,4466 +1973,8,31,M,4925 +1973,8,99,F,24 +1973,8,99,M,22 +1973,9,1,F,4106 +1973,9,1,M,4294 +1973,9,2,F,3790 +1973,9,2,M,3917 +1973,9,3,F,3815 +1973,9,3,M,3966 +1973,9,4,F,4711 +1973,9,4,M,4803 +1973,9,5,F,4869 +1973,9,5,M,5028 +1973,9,6,F,4475 +1973,9,6,M,4736 +1973,9,7,F,4479 +1973,9,7,M,4938 +1973,9,8,F,4176 +1973,9,8,M,4081 +1973,9,9,F,3922 +1973,9,9,M,4039 +1973,9,10,F,4449 +1973,9,10,M,4716 +1973,9,11,F,4739 +1973,9,11,M,4962 +1973,9,12,F,4540 +1973,9,12,M,4763 +1973,9,13,F,4445 +1973,9,13,M,4661 +1973,9,14,F,4683 +1973,9,14,M,4986 +1973,9,15,F,4172 +1973,9,15,M,4335 +1973,9,16,F,3904 +1973,9,16,M,4090 +1973,9,17,F,4725 +1973,9,17,M,4813 +1973,9,18,F,4733 +1973,9,18,M,4892 +1973,9,19,F,4612 +1973,9,19,M,4752 +1973,9,20,F,4852 +1973,9,20,M,4916 +1973,9,21,F,4737 +1973,9,21,M,4880 +1973,9,22,F,4286 +1973,9,22,M,4445 +1973,9,23,F,4079 +1973,9,23,M,4177 +1973,9,24,F,4847 +1973,9,24,M,4764 +1973,9,25,F,4878 +1973,9,25,M,5211 +1973,9,26,F,4696 +1973,9,26,M,5099 +1973,9,27,F,4715 +1973,9,27,M,4882 +1973,9,28,F,4680 +1973,9,28,M,4867 +1973,9,29,F,4144 +1973,9,29,M,4289 +1973,9,30,F,3940 +1973,9,30,M,4074 +1973,9,31,F,4 +1973,9,31,M,2 +1973,9,99,F,16 +1973,9,99,M,8 +1973,10,1,F,4456 +1973,10,1,M,4841 +1973,10,2,F,4794 +1973,10,2,M,4882 +1973,10,3,F,4387 +1973,10,3,M,4682 +1973,10,4,F,4471 +1973,10,4,M,4478 +1973,10,5,F,4400 +1973,10,5,M,4847 +1973,10,6,F,3997 +1973,10,6,M,4177 +1973,10,7,F,3686 +1973,10,7,M,3930 +1973,10,8,F,4488 +1973,10,8,M,4568 +1973,10,9,F,4553 +1973,10,9,M,4756 +1973,10,10,F,4428 +1973,10,10,M,4699 +1973,10,11,F,4342 +1973,10,11,M,4480 +1973,10,12,F,4431 +1973,10,12,M,4497 +1973,10,13,F,3776 +1973,10,13,M,4152 +1973,10,14,F,3585 +1973,10,14,M,3858 +1973,10,15,F,4235 +1973,10,15,M,4588 +1973,10,16,F,4377 +1973,10,16,M,4728 +1973,10,17,F,4224 +1973,10,17,M,4490 +1973,10,18,F,4154 +1973,10,18,M,4548 +1973,10,19,F,4249 +1973,10,19,M,4604 +1973,10,20,F,3739 +1973,10,20,M,3898 +1973,10,21,F,3457 +1973,10,21,M,3589 +1973,10,22,F,4176 +1973,10,22,M,4254 +1973,10,23,F,4498 +1973,10,23,M,4757 +1973,10,24,F,4382 +1973,10,24,M,4423 +1973,10,25,F,4173 +1973,10,25,M,4334 +1973,10,26,F,4326 +1973,10,26,M,4427 +1973,10,27,F,3754 +1973,10,27,M,3992 +1973,10,28,F,3593 +1973,10,28,M,3781 +1973,10,29,F,4077 +1973,10,29,M,4487 +1973,10,30,F,4219 +1973,10,30,M,4509 +1973,10,31,F,4161 +1973,10,31,M,4534 +1973,10,99,F,24 +1973,10,99,M,14 +1973,11,1,F,4297 +1973,11,1,M,4466 +1973,11,2,F,4195 +1973,11,2,M,4564 +1973,11,3,F,3736 +1973,11,3,M,4005 +1973,11,4,F,3535 +1973,11,4,M,3710 +1973,11,5,F,4143 +1973,11,5,M,4569 +1973,11,6,F,4197 +1973,11,6,M,4411 +1973,11,7,F,4186 +1973,11,7,M,4530 +1973,11,8,F,4249 +1973,11,8,M,4397 +1973,11,9,F,4365 +1973,11,9,M,4632 +1973,11,10,F,3778 +1973,11,10,M,4081 +1973,11,11,F,3580 +1973,11,11,M,3840 +1973,11,12,F,4314 +1973,11,12,M,4370 +1973,11,13,F,4364 +1973,11,13,M,4785 +1973,11,14,F,4393 +1973,11,14,M,4446 +1973,11,15,F,4259 +1973,11,15,M,4462 +1973,11,16,F,4453 +1973,11,16,M,4686 +1973,11,17,F,3856 +1973,11,17,M,4021 +1973,11,18,F,3679 +1973,11,18,M,3741 +1973,11,19,F,4353 +1973,11,19,M,4522 +1973,11,20,F,4430 +1973,11,20,M,4969 +1973,11,21,F,4140 +1973,11,21,M,4456 +1973,11,22,F,3452 +1973,11,22,M,3597 +1973,11,23,F,4055 +1973,11,23,M,4187 +1973,11,24,F,3740 +1973,11,24,M,4020 +1973,11,25,F,3621 +1973,11,25,M,3758 +1973,11,26,F,4426 +1973,11,26,M,4626 +1973,11,27,F,4497 +1973,11,27,M,4848 +1973,11,28,F,4178 +1973,11,28,M,4414 +1973,11,29,F,4124 +1973,11,29,M,4428 +1973,11,30,F,4186 +1973,11,30,M,4404 +1973,11,31,M,10 +1973,11,99,F,22 +1973,11,99,M,22 +1973,12,1,F,3704 +1973,12,1,M,3963 +1973,12,2,F,3570 +1973,12,2,M,3742 +1973,12,3,F,4264 +1973,12,3,M,4475 +1973,12,4,F,4395 +1973,12,4,M,4709 +1973,12,5,F,4254 +1973,12,5,M,4545 +1973,12,6,F,4245 +1973,12,6,M,4404 +1973,12,7,F,4189 +1973,12,7,M,4292 +1973,12,8,F,3720 +1973,12,8,M,3962 +1973,12,9,F,3749 +1973,12,9,M,3707 +1973,12,10,F,4305 +1973,12,10,M,4587 +1973,12,11,F,4359 +1973,12,11,M,4699 +1973,12,12,F,4310 +1973,12,12,M,4484 +1973,12,13,F,4248 +1973,12,13,M,4503 +1973,12,14,F,4552 +1973,12,14,M,4625 +1973,12,15,F,3809 +1973,12,15,M,4012 +1973,12,16,F,3754 +1973,12,16,M,3910 +1973,12,17,F,4610 +1973,12,17,M,4800 +1973,12,18,F,4536 +1973,12,18,M,5000 +1973,12,19,F,4658 +1973,12,19,M,4659 +1973,12,20,F,4428 +1973,12,20,M,4553 +1973,12,21,F,4316 +1973,12,21,M,4615 +1973,12,22,F,3758 +1973,12,22,M,3827 +1973,12,23,F,3393 +1973,12,23,M,3619 +1973,12,24,F,3595 +1973,12,24,M,3705 +1973,12,25,F,3493 +1973,12,25,M,3471 +1973,12,26,F,4023 +1973,12,26,M,4113 +1973,12,27,F,4648 +1973,12,27,M,4861 +1973,12,28,F,4768 +1973,12,28,M,5182 +1973,12,29,F,4166 +1973,12,29,M,4154 +1973,12,30,F,3546 +1973,12,30,M,3819 +1973,12,31,F,4399 +1973,12,31,M,4567 +1973,12,99,F,24 +1973,12,99,M,20 +1974,1,1,F,3311 +1974,1,1,M,3691 +1974,1,2,F,3798 +1974,1,2,M,4011 +1974,1,3,F,4013 +1974,1,3,M,4364 +1974,1,4,F,4283 +1974,1,4,M,4568 +1974,1,5,F,3809 +1974,1,5,M,4018 +1974,1,6,F,3478 +1974,1,6,M,3615 +1974,1,7,F,4195 +1974,1,7,M,4428 +1974,1,8,F,4484 +1974,1,8,M,4302 +1974,1,9,F,4068 +1974,1,9,M,4278 +1974,1,10,F,4343 +1974,1,10,M,4339 +1974,1,11,F,4410 +1974,1,11,M,4634 +1974,1,12,F,3750 +1974,1,12,M,4019 +1974,1,13,F,3592 +1974,1,13,M,3760 +1974,1,14,F,4266 +1974,1,14,M,4530 +1974,1,15,F,4223 +1974,1,15,M,4716 +1974,1,16,F,4146 +1974,1,16,M,4586 +1974,1,17,F,4276 +1974,1,17,M,4328 +1974,1,18,F,4489 +1974,1,18,M,4482 +1974,1,19,F,3828 +1974,1,19,M,3923 +1974,1,20,F,3592 +1974,1,20,M,3887 +1974,1,21,F,4424 +1974,1,21,M,4634 +1974,1,22,F,4254 +1974,1,22,M,4513 +1974,1,23,F,4184 +1974,1,23,M,4273 +1974,1,24,F,4193 +1974,1,24,M,4499 +1974,1,25,F,4323 +1974,1,25,M,4367 +1974,1,26,F,3800 +1974,1,26,M,3999 +1974,1,27,F,3657 +1974,1,27,M,3884 +1974,1,28,F,4063 +1974,1,28,M,4399 +1974,1,29,F,4349 +1974,1,29,M,4562 +1974,1,30,F,4072 +1974,1,30,M,4367 +1974,1,31,F,4214 +1974,1,31,M,4406 +1974,1,99,F,8 +1974,1,99,M,20 +1974,2,1,F,4295 +1974,2,1,M,4473 +1974,2,2,F,3830 +1974,2,2,M,4023 +1974,2,3,F,3559 +1974,2,3,M,3873 +1974,2,4,F,4321 +1974,2,4,M,4330 +1974,2,5,F,4337 +1974,2,5,M,4555 +1974,2,6,F,4342 +1974,2,6,M,4450 +1974,2,7,F,4237 +1974,2,7,M,4468 +1974,2,8,F,4332 +1974,2,8,M,4490 +1974,2,9,F,3691 +1974,2,9,M,4001 +1974,2,10,F,3450 +1974,2,10,M,3700 +1974,2,11,F,4345 +1974,2,11,M,4421 +1974,2,12,F,4382 +1974,2,12,M,4542 +1974,2,13,F,4302 +1974,2,13,M,4506 +1974,2,14,F,4215 +1974,2,14,M,4680 +1974,2,15,F,4421 +1974,2,15,M,4613 +1974,2,16,F,3906 +1974,2,16,M,4033 +1974,2,17,F,3637 +1974,2,17,M,3819 +1974,2,18,F,4147 +1974,2,18,M,4490 +1974,2,19,F,4318 +1974,2,19,M,4698 +1974,2,20,F,4417 +1974,2,20,M,4492 +1974,2,21,F,4262 +1974,2,21,M,4486 +1974,2,22,F,4426 +1974,2,22,M,4634 +1974,2,23,F,3986 +1974,2,23,M,4165 +1974,2,24,F,3730 +1974,2,24,M,3828 +1974,2,25,F,4083 +1974,2,25,M,4429 +1974,2,26,F,4365 +1974,2,26,M,4491 +1974,2,27,F,4354 +1974,2,27,M,4356 +1974,2,28,F,4161 +1974,2,28,M,4373 +1974,2,29,F,5 +1974,2,29,M,2 +1974,2,31,F,2 +1974,2,31,M,2 +1974,2,99,F,12 +1974,2,99,M,9 +1974,3,1,F,4327 +1974,3,1,M,4590 +1974,3,2,F,4014 +1974,3,2,M,4069 +1974,3,3,F,3752 +1974,3,3,M,3898 +1974,3,4,F,4372 +1974,3,4,M,4518 +1974,3,5,F,4381 +1974,3,5,M,4889 +1974,3,6,F,4248 +1974,3,6,M,4438 +1974,3,7,F,4241 +1974,3,7,M,4399 +1974,3,8,F,4344 +1974,3,8,M,4620 +1974,3,9,F,3795 +1974,3,9,M,4155 +1974,3,10,F,3636 +1974,3,10,M,3781 +1974,3,11,F,4219 +1974,3,11,M,4618 +1974,3,12,F,4357 +1974,3,12,M,4527 +1974,3,13,F,4107 +1974,3,13,M,4400 +1974,3,14,F,4172 +1974,3,14,M,4230 +1974,3,15,F,4297 +1974,3,15,M,4593 +1974,3,16,F,3843 +1974,3,16,M,3991 +1974,3,17,F,3518 +1974,3,17,M,3708 +1974,3,18,F,4120 +1974,3,18,M,4574 +1974,3,19,F,4335 +1974,3,19,M,4643 +1974,3,20,F,4034 +1974,3,20,M,4421 +1974,3,21,F,3920 +1974,3,21,M,4480 +1974,3,22,F,4194 +1974,3,22,M,4474 +1974,3,23,F,3820 +1974,3,23,M,3953 +1974,3,24,F,3484 +1974,3,24,M,3550 +1974,3,25,F,4172 +1974,3,25,M,4398 +1974,3,26,F,4283 +1974,3,26,M,4473 +1974,3,27,F,4061 +1974,3,27,M,4454 +1974,3,28,F,4139 +1974,3,28,M,4322 +1974,3,29,F,4245 +1974,3,29,M,4394 +1974,3,30,F,3624 +1974,3,30,M,3902 +1974,3,31,F,3538 +1974,3,31,M,3767 +1974,3,99,F,6 +1974,3,99,M,16 +1974,4,1,F,4233 +1974,4,1,M,4317 +1974,4,2,F,4489 +1974,4,2,M,4659 +1974,4,3,F,4210 +1974,4,3,M,4361 +1974,4,4,F,4194 +1974,4,4,M,4323 +1974,4,5,F,4215 +1974,4,5,M,4441 +1974,4,6,F,3537 +1974,4,6,M,3918 +1974,4,7,F,3393 +1974,4,7,M,3658 +1974,4,8,F,4260 +1974,4,8,M,4176 +1974,4,9,F,4310 +1974,4,9,M,4607 +1974,4,10,F,3879 +1974,4,10,M,4567 +1974,4,11,F,4104 +1974,4,11,M,4155 +1974,4,12,F,3945 +1974,4,12,M,4441 +1974,4,13,F,3764 +1974,4,13,M,3845 +1974,4,14,F,3487 +1974,4,14,M,3545 +1974,4,15,F,4060 +1974,4,15,M,4282 +1974,4,16,F,4228 +1974,4,16,M,4387 +1974,4,17,F,4262 +1974,4,17,M,4340 +1974,4,18,F,4147 +1974,4,18,M,4186 +1974,4,19,F,4141 +1974,4,19,M,4446 +1974,4,20,F,3519 +1974,4,20,M,3961 +1974,4,21,F,3508 +1974,4,21,M,3700 +1974,4,22,F,4168 +1974,4,22,M,4329 +1974,4,23,F,4376 +1974,4,23,M,4659 +1974,4,24,F,4258 +1974,4,24,M,4407 +1974,4,25,F,4210 +1974,4,25,M,4346 +1974,4,26,F,4204 +1974,4,26,M,4558 +1974,4,27,F,3628 +1974,4,27,M,3862 +1974,4,28,F,3430 +1974,4,28,M,3625 +1974,4,29,F,3969 +1974,4,29,M,4363 +1974,4,30,F,4199 +1974,4,30,M,4478 +1974,4,31,F,2 +1974,4,31,M,2 +1974,4,99,F,10 +1974,4,99,M,10 +1974,5,1,F,4037 +1974,5,1,M,4537 +1974,5,2,F,4012 +1974,5,2,M,4226 +1974,5,3,F,4068 +1974,5,3,M,4592 +1974,5,4,F,3562 +1974,5,4,M,3822 +1974,5,5,F,3367 +1974,5,5,M,3561 +1974,5,6,F,4059 +1974,5,6,M,4258 +1974,5,7,F,4309 +1974,5,7,M,4577 +1974,5,8,F,4052 +1974,5,8,M,4432 +1974,5,9,F,4084 +1974,5,9,M,4441 +1974,5,10,F,4164 +1974,5,10,M,4431 +1974,5,11,F,3790 +1974,5,11,M,3920 +1974,5,12,F,3433 +1974,5,12,M,3653 +1974,5,13,F,4264 +1974,5,13,M,4375 +1974,5,14,F,4270 +1974,5,14,M,4616 +1974,5,15,F,4364 +1974,5,15,M,4656 +1974,5,16,F,4307 +1974,5,16,M,4323 +1974,5,17,F,4345 +1974,5,17,M,4528 +1974,5,18,F,3752 +1974,5,18,M,3915 +1974,5,19,F,3373 +1974,5,19,M,3523 +1974,5,20,F,4183 +1974,5,20,M,4610 +1974,5,21,F,4322 +1974,5,21,M,4739 +1974,5,22,F,4304 +1974,5,22,M,4472 +1974,5,23,F,4134 +1974,5,23,M,4443 +1974,5,24,F,4369 +1974,5,24,M,4555 +1974,5,25,F,3719 +1974,5,25,M,3874 +1974,5,26,F,3477 +1974,5,26,M,3455 +1974,5,27,F,3608 +1974,5,27,M,3852 +1974,5,28,F,4193 +1974,5,28,M,4377 +1974,5,29,F,4445 +1974,5,29,M,4618 +1974,5,30,F,4273 +1974,5,30,M,4685 +1974,5,31,F,4460 +1974,5,31,M,4590 +1974,5,99,F,12 +1974,5,99,M,8 +1974,6,1,F,3535 +1974,6,1,M,3913 +1974,6,2,F,3424 +1974,6,2,M,3622 +1974,6,3,F,3944 +1974,6,3,M,4370 +1974,6,4,F,4340 +1974,6,4,M,4570 +1974,6,5,F,4247 +1974,6,5,M,4490 +1974,6,6,F,4228 +1974,6,6,M,4371 +1974,6,7,F,4469 +1974,6,7,M,4641 +1974,6,8,F,3692 +1974,6,8,M,3779 +1974,6,9,F,3435 +1974,6,9,M,3746 +1974,6,10,F,4368 +1974,6,10,M,4571 +1974,6,11,F,4332 +1974,6,11,M,4422 +1974,6,12,F,4116 +1974,6,12,M,4487 +1974,6,13,F,3993 +1974,6,13,M,4463 +1974,6,14,F,4317 +1974,6,14,M,4581 +1974,6,15,F,3708 +1974,6,15,M,3958 +1974,6,16,F,3455 +1974,6,16,M,3756 +1974,6,17,F,4228 +1974,6,17,M,4448 +1974,6,18,F,4299 +1974,6,18,M,4717 +1974,6,19,F,4299 +1974,6,19,M,4565 +1974,6,20,F,4251 +1974,6,20,M,4582 +1974,6,21,F,4501 +1974,6,21,M,4863 +1974,6,22,F,3764 +1974,6,22,M,4239 +1974,6,23,F,3446 +1974,6,23,M,3716 +1974,6,24,F,4098 +1974,6,24,M,4405 +1974,6,25,F,4354 +1974,6,25,M,4684 +1974,6,26,F,4331 +1974,6,26,M,4668 +1974,6,27,F,4257 +1974,6,27,M,4625 +1974,6,28,F,4395 +1974,6,28,M,4694 +1974,6,29,F,3923 +1974,6,29,M,4088 +1974,6,30,F,3632 +1974,6,30,M,3899 +1974,6,31,F,2 +1974,6,31,M,2 +1974,6,99,F,18 +1974,6,99,M,24 +1974,7,1,F,4524 +1974,7,1,M,4692 +1974,7,2,F,4866 +1974,7,2,M,5057 +1974,7,3,F,4607 +1974,7,3,M,5086 +1974,7,4,F,3859 +1974,7,4,M,4065 +1974,7,5,F,4383 +1974,7,5,M,4668 +1974,7,6,F,4012 +1974,7,6,M,4273 +1974,7,7,F,3634 +1974,7,7,M,3992 +1974,7,8,F,4515 +1974,7,8,M,4957 +1974,7,9,F,4830 +1974,7,9,M,5030 +1974,7,10,F,4665 +1974,7,10,M,4758 +1974,7,11,F,4472 +1974,7,11,M,4746 +1974,7,12,F,4453 +1974,7,12,M,4830 +1974,7,13,F,4009 +1974,7,13,M,4219 +1974,7,14,F,3712 +1974,7,14,M,3893 +1974,7,15,F,4511 +1974,7,15,M,4756 +1974,7,16,F,4737 +1974,7,16,M,4960 +1974,7,17,F,4686 +1974,7,17,M,4733 +1974,7,18,F,4416 +1974,7,18,M,4706 +1974,7,19,F,4698 +1974,7,19,M,4825 +1974,7,20,F,4113 +1974,7,20,M,4358 +1974,7,21,F,3693 +1974,7,21,M,3740 +1974,7,22,F,4543 +1974,7,22,M,4771 +1974,7,23,F,4909 +1974,7,23,M,5201 +1974,7,24,F,4533 +1974,7,24,M,4794 +1974,7,25,F,4425 +1974,7,25,M,4838 +1974,7,26,F,4763 +1974,7,26,M,4811 +1974,7,27,F,4139 +1974,7,27,M,4353 +1974,7,28,F,3879 +1974,7,28,M,3993 +1974,7,29,F,4645 +1974,7,29,M,4809 +1974,7,30,F,4768 +1974,7,30,M,5053 +1974,7,31,F,4717 +1974,7,31,M,4874 +1974,7,99,F,9 +1974,7,99,M,6 +1974,8,1,F,4787 +1974,8,1,M,4920 +1974,8,2,F,4764 +1974,8,2,M,4872 +1974,8,3,F,4159 +1974,8,3,M,4311 +1974,8,4,F,3906 +1974,8,4,M,3907 +1974,8,5,F,4477 +1974,8,5,M,4647 +1974,8,6,F,4774 +1974,8,6,M,5193 +1974,8,7,F,4713 +1974,8,7,M,4903 +1974,8,8,F,4578 +1974,8,8,M,4972 +1974,8,9,F,4732 +1974,8,9,M,4964 +1974,8,10,F,4053 +1974,8,10,M,4378 +1974,8,11,F,3798 +1974,8,11,M,3926 +1974,8,12,F,4718 +1974,8,12,M,4925 +1974,8,13,F,5001 +1974,8,13,M,5212 +1974,8,14,F,4781 +1974,8,14,M,4805 +1974,8,15,F,4769 +1974,8,15,M,5056 +1974,8,16,F,4656 +1974,8,16,M,5179 +1974,8,17,F,4163 +1974,8,17,M,4393 +1974,8,18,F,3965 +1974,8,18,M,4108 +1974,8,19,F,4630 +1974,8,19,M,4952 +1974,8,20,F,4926 +1974,8,20,M,5227 +1974,8,21,F,4654 +1974,8,21,M,5057 +1974,8,22,F,4604 +1974,8,22,M,4731 +1974,8,23,F,4844 +1974,8,23,M,4951 +1974,8,24,F,4139 +1974,8,24,M,4347 +1974,8,25,F,3793 +1974,8,25,M,4061 +1974,8,26,F,4607 +1974,8,26,M,4949 +1974,8,27,F,4856 +1974,8,27,M,5219 +1974,8,28,F,4689 +1974,8,28,M,4910 +1974,8,29,F,4597 +1974,8,29,M,4947 +1974,8,30,F,4726 +1974,8,30,M,5054 +1974,8,31,F,4190 +1974,8,31,M,4347 +1974,8,99,F,4 +1974,8,99,M,10 +1974,9,1,F,3912 +1974,9,1,M,3997 +1974,9,2,F,3865 +1974,9,2,M,4104 +1974,9,3,F,4805 +1974,9,3,M,4666 +1974,9,4,F,4955 +1974,9,4,M,5025 +1974,9,5,F,4700 +1974,9,5,M,4881 +1974,9,6,F,4654 +1974,9,6,M,5073 +1974,9,7,F,4140 +1974,9,7,M,4410 +1974,9,8,F,3865 +1974,9,8,M,4024 +1974,9,9,F,4710 +1974,9,9,M,5086 +1974,9,10,F,4897 +1974,9,10,M,5177 +1974,9,11,F,4720 +1974,9,11,M,5077 +1974,9,12,F,4829 +1974,9,12,M,5003 +1974,9,13,F,4794 +1974,9,13,M,5074 +1974,9,14,F,4268 +1974,9,14,M,4601 +1974,9,15,F,4085 +1974,9,15,M,4181 +1974,9,16,F,4818 +1974,9,16,M,5232 +1974,9,17,F,5040 +1974,9,17,M,5235 +1974,9,18,F,4906 +1974,9,18,M,5127 +1974,9,19,F,4906 +1974,9,19,M,5076 +1974,9,20,F,4981 +1974,9,20,M,5343 +1974,9,21,F,4339 +1974,9,21,M,4665 +1974,9,22,F,4236 +1974,9,22,M,4386 +1974,9,23,F,4912 +1974,9,23,M,5225 +1974,9,24,F,5156 +1974,9,24,M,5219 +1974,9,25,F,4839 +1974,9,25,M,5204 +1974,9,26,F,4907 +1974,9,26,M,5222 +1974,9,27,F,5093 +1974,9,27,M,5195 +1974,9,28,F,4512 +1974,9,28,M,4731 +1974,9,29,F,4229 +1974,9,29,M,4356 +1974,9,30,F,4754 +1974,9,30,M,5221 +1974,9,31,F,3 +1974,9,31,M,7 +1974,9,99,F,12 +1974,9,99,M,14 +1974,10,1,F,4844 +1974,10,1,M,5420 +1974,10,2,F,4803 +1974,10,2,M,5092 +1974,10,3,F,4726 +1974,10,3,M,5041 +1974,10,4,F,4809 +1974,10,4,M,5033 +1974,10,5,F,4206 +1974,10,5,M,4487 +1974,10,6,F,3914 +1974,10,6,M,4178 +1974,10,7,F,4807 +1974,10,7,M,4949 +1974,10,8,F,4770 +1974,10,8,M,5038 +1974,10,9,F,4672 +1974,10,9,M,4833 +1974,10,10,F,4697 +1974,10,10,M,4998 +1974,10,11,F,4660 +1974,10,11,M,5057 +1974,10,12,F,4102 +1974,10,12,M,4233 +1974,10,13,F,3747 +1974,10,13,M,4020 +1974,10,14,F,4512 +1974,10,14,M,4693 +1974,10,15,F,4620 +1974,10,15,M,4952 +1974,10,16,F,4426 +1974,10,16,M,4785 +1974,10,17,F,4507 +1974,10,17,M,4804 +1974,10,18,F,4606 +1974,10,18,M,4847 +1974,10,19,F,3956 +1974,10,19,M,4230 +1974,10,20,F,3684 +1974,10,20,M,3788 +1974,10,21,F,4386 +1974,10,21,M,4627 +1974,10,22,F,4559 +1974,10,22,M,4768 +1974,10,23,F,4368 +1974,10,23,M,4597 +1974,10,24,F,4285 +1974,10,24,M,4507 +1974,10,25,F,4425 +1974,10,25,M,4774 +1974,10,26,F,4008 +1974,10,26,M,4266 +1974,10,27,F,3855 +1974,10,27,M,4025 +1974,10,28,F,4225 +1974,10,28,M,4649 +1974,10,29,F,4444 +1974,10,29,M,4911 +1974,10,30,F,4496 +1974,10,30,M,4631 +1974,10,31,F,4326 +1974,10,31,M,4587 +1974,10,99,F,10 +1974,10,99,M,22 +1974,11,1,F,4415 +1974,11,1,M,4783 +1974,11,2,F,4037 +1974,11,2,M,4018 +1974,11,3,F,3641 +1974,11,3,M,3926 +1974,11,4,F,4349 +1974,11,4,M,4625 +1974,11,5,F,4633 +1974,11,5,M,4867 +1974,11,6,F,4347 +1974,11,6,M,4704 +1974,11,7,F,4348 +1974,11,7,M,4471 +1974,11,8,F,4373 +1974,11,8,M,4602 +1974,11,9,F,3795 +1974,11,9,M,4011 +1974,11,10,F,3702 +1974,11,10,M,3817 +1974,11,11,F,4515 +1974,11,11,M,4708 +1974,11,12,F,4488 +1974,11,12,M,4786 +1974,11,13,F,4500 +1974,11,13,M,4413 +1974,11,14,F,4545 +1974,11,14,M,4516 +1974,11,15,F,4506 +1974,11,15,M,4735 +1974,11,16,F,3803 +1974,11,16,M,4001 +1974,11,17,F,3618 +1974,11,17,M,3853 +1974,11,18,F,4436 +1974,11,18,M,4781 +1974,11,19,F,4489 +1974,11,19,M,4938 +1974,11,20,F,4528 +1974,11,20,M,4706 +1974,11,21,F,4478 +1974,11,21,M,4557 +1974,11,22,F,4420 +1974,11,22,M,4656 +1974,11,23,F,4022 +1974,11,23,M,4081 +1974,11,24,F,3640 +1974,11,24,M,3905 +1974,11,25,F,4261 +1974,11,25,M,4577 +1974,11,26,F,4557 +1974,11,26,M,4931 +1974,11,27,F,4360 +1974,11,27,M,4687 +1974,11,28,F,3546 +1974,11,28,M,3748 +1974,11,29,F,4101 +1974,11,29,M,4323 +1974,11,30,F,3751 +1974,11,30,M,3976 +1974,11,31,F,4 +1974,11,31,M,2 +1974,11,99,F,10 +1974,11,99,M,10 +1974,12,1,F,3693 +1974,12,1,M,3876 +1974,12,2,F,4470 +1974,12,2,M,4789 +1974,12,3,F,4641 +1974,12,3,M,4898 +1974,12,4,F,4457 +1974,12,4,M,4615 +1974,12,5,F,4236 +1974,12,5,M,4699 +1974,12,6,F,4473 +1974,12,6,M,4570 +1974,12,7,F,3941 +1974,12,7,M,4028 +1974,12,8,F,3805 +1974,12,8,M,3863 +1974,12,9,F,4323 +1974,12,9,M,4647 +1974,12,10,F,4512 +1974,12,10,M,4700 +1974,12,11,F,4451 +1974,12,11,M,4592 +1974,12,12,F,4297 +1974,12,12,M,4748 +1974,12,13,F,4333 +1974,12,13,M,4418 +1974,12,14,F,3866 +1974,12,14,M,3979 +1974,12,15,F,3643 +1974,12,15,M,3862 +1974,12,16,F,4519 +1974,12,16,M,4669 +1974,12,17,F,4733 +1974,12,17,M,4907 +1974,12,18,F,4664 +1974,12,18,M,4739 +1974,12,19,F,4495 +1974,12,19,M,4849 +1974,12,20,F,4632 +1974,12,20,M,4821 +1974,12,21,F,3884 +1974,12,21,M,3956 +1974,12,22,F,3558 +1974,12,22,M,3519 +1974,12,23,F,3978 +1974,12,23,M,4108 +1974,12,24,F,3604 +1974,12,24,M,3934 +1974,12,25,F,3381 +1974,12,25,M,3439 +1974,12,26,F,4078 +1974,12,26,M,4385 +1974,12,27,F,4755 +1974,12,27,M,4848 +1974,12,28,F,4003 +1974,12,28,M,4221 +1974,12,29,F,3668 +1974,12,29,M,3715 +1974,12,30,F,4580 +1974,12,30,M,5061 +1974,12,31,F,4817 +1974,12,31,M,4820 +1974,12,99,F,8 +1974,12,99,M,22 +1975,1,1,F,3469 +1975,1,1,M,3559 +1975,1,2,F,3928 +1975,1,2,M,3945 +1975,1,3,F,4107 +1975,1,3,M,4318 +1975,1,4,F,3722 +1975,1,4,M,3948 +1975,1,5,F,3529 +1975,1,5,M,3721 +1975,1,6,F,4040 +1975,1,6,M,4386 +1975,1,7,F,4166 +1975,1,7,M,4626 +1975,1,8,F,4060 +1975,1,8,M,4356 +1975,1,9,F,4122 +1975,1,9,M,4339 +1975,1,10,F,4271 +1975,1,10,M,4581 +1975,1,11,F,3782 +1975,1,11,M,4146 +1975,1,12,F,3571 +1975,1,12,M,3669 +1975,1,13,F,4140 +1975,1,13,M,4479 +1975,1,14,F,4446 +1975,1,14,M,4742 +1975,1,15,F,4297 +1975,1,15,M,4596 +1975,1,16,F,4229 +1975,1,16,M,4407 +1975,1,17,F,4417 +1975,1,17,M,4595 +1975,1,18,F,3716 +1975,1,18,M,4160 +1975,1,19,F,3701 +1975,1,19,M,3747 +1975,1,20,F,4384 +1975,1,20,M,4518 +1975,1,21,F,4470 +1975,1,21,M,4632 +1975,1,22,F,4101 +1975,1,22,M,4457 +1975,1,23,F,4233 +1975,1,23,M,4514 +1975,1,24,F,4291 +1975,1,24,M,4480 +1975,1,25,F,3923 +1975,1,25,M,4154 +1975,1,26,F,3695 +1975,1,26,M,4013 +1975,1,27,F,4332 +1975,1,27,M,4451 +1975,1,28,F,4534 +1975,1,28,M,4615 +1975,1,29,F,4436 +1975,1,29,M,4464 +1975,1,30,F,4161 +1975,1,30,M,4456 +1975,1,31,F,4163 +1975,1,31,M,4514 +1975,1,99,F,4 +1975,1,99,M,4 +1975,2,1,F,3735 +1975,2,1,M,3964 +1975,2,2,F,3542 +1975,2,2,M,3774 +1975,2,3,F,4337 +1975,2,3,M,4544 +1975,2,4,F,4552 +1975,2,4,M,4541 +1975,2,5,F,4358 +1975,2,5,M,4471 +1975,2,6,F,4017 +1975,2,6,M,4408 +1975,2,7,F,4371 +1975,2,7,M,4598 +1975,2,8,F,3816 +1975,2,8,M,4036 +1975,2,9,F,3652 +1975,2,9,M,3912 +1975,2,10,F,4293 +1975,2,10,M,4440 +1975,2,11,F,4473 +1975,2,11,M,4653 +1975,2,12,F,4364 +1975,2,12,M,4584 +1975,2,13,F,4207 +1975,2,13,M,4555 +1975,2,14,F,4583 +1975,2,14,M,4636 +1975,2,15,F,3824 +1975,2,15,M,4173 +1975,2,16,F,3748 +1975,2,16,M,3797 +1975,2,17,F,4119 +1975,2,17,M,4254 +1975,2,18,F,4399 +1975,2,18,M,4833 +1975,2,19,F,4217 +1975,2,19,M,4579 +1975,2,20,F,4374 +1975,2,20,M,4610 +1975,2,21,F,4472 +1975,2,21,M,4447 +1975,2,22,F,3860 +1975,2,22,M,4057 +1975,2,23,F,3495 +1975,2,23,M,3782 +1975,2,24,F,4288 +1975,2,24,M,4566 +1975,2,25,F,4433 +1975,2,25,M,4717 +1975,2,26,F,4295 +1975,2,26,M,4525 +1975,2,27,F,4071 +1975,2,27,M,4470 +1975,2,28,F,4418 +1975,2,28,M,4556 +1975,2,29,F,3 +1975,2,29,M,4 +1975,2,31,F,1 +1975,2,99,F,6 +1975,2,99,M,9 +1975,3,1,F,3882 +1975,3,1,M,4039 +1975,3,2,F,3642 +1975,3,2,M,3745 +1975,3,3,F,4351 +1975,3,3,M,4612 +1975,3,4,F,4421 +1975,3,4,M,4616 +1975,3,5,F,4286 +1975,3,5,M,4568 +1975,3,6,F,4241 +1975,3,6,M,4599 +1975,3,7,F,4491 +1975,3,7,M,4564 +1975,3,8,F,3870 +1975,3,8,M,3934 +1975,3,9,F,3510 +1975,3,9,M,3636 +1975,3,10,F,4208 +1975,3,10,M,4360 +1975,3,11,F,4504 +1975,3,11,M,4735 +1975,3,12,F,4290 +1975,3,12,M,4643 +1975,3,13,F,4283 +1975,3,13,M,4327 +1975,3,14,F,4522 +1975,3,14,M,4576 +1975,3,15,F,3675 +1975,3,15,M,3916 +1975,3,16,F,3520 +1975,3,16,M,3715 +1975,3,17,F,4326 +1975,3,17,M,4674 +1975,3,18,F,4351 +1975,3,18,M,4739 +1975,3,19,F,4254 +1975,3,19,M,4613 +1975,3,20,F,4306 +1975,3,20,M,4620 +1975,3,21,F,4363 +1975,3,21,M,4709 +1975,3,22,F,3936 +1975,3,22,M,4102 +1975,3,23,F,3578 +1975,3,23,M,3944 +1975,3,24,F,4303 +1975,3,24,M,4481 +1975,3,25,F,4458 +1975,3,25,M,4748 +1975,3,26,F,4317 +1975,3,26,M,4595 +1975,3,27,F,4185 +1975,3,27,M,4368 +1975,3,28,F,4247 +1975,3,28,M,4552 +1975,3,29,F,3772 +1975,3,29,M,3858 +1975,3,30,F,3408 +1975,3,30,M,3763 +1975,3,31,F,4145 +1975,3,31,M,4377 +1975,3,99,F,4 +1975,3,99,M,8 +1975,4,1,F,4263 +1975,4,1,M,4608 +1975,4,2,F,4197 +1975,4,2,M,4573 +1975,4,3,F,4329 +1975,4,3,M,4572 +1975,4,4,F,4155 +1975,4,4,M,4461 +1975,4,5,F,3647 +1975,4,5,M,3934 +1975,4,6,F,3467 +1975,4,6,M,3695 +1975,4,7,F,4043 +1975,4,7,M,4458 +1975,4,8,F,4410 +1975,4,8,M,4710 +1975,4,9,F,4299 +1975,4,9,M,4524 +1975,4,10,F,4135 +1975,4,10,M,4442 +1975,4,11,F,4351 +1975,4,11,M,4580 +1975,4,12,F,3592 +1975,4,12,M,3958 +1975,4,13,F,3449 +1975,4,13,M,3553 +1975,4,14,F,4131 +1975,4,14,M,4319 +1975,4,15,F,4426 +1975,4,15,M,4688 +1975,4,16,F,4142 +1975,4,16,M,4534 +1975,4,17,F,4117 +1975,4,17,M,4419 +1975,4,18,F,4489 +1975,4,18,M,4642 +1975,4,19,F,3741 +1975,4,19,M,3873 +1975,4,20,F,3439 +1975,4,20,M,3590 +1975,4,21,F,4027 +1975,4,21,M,4421 +1975,4,22,F,4352 +1975,4,22,M,4592 +1975,4,23,F,4186 +1975,4,23,M,4325 +1975,4,24,F,4156 +1975,4,24,M,4370 +1975,4,25,F,4258 +1975,4,25,M,4597 +1975,4,26,F,3732 +1975,4,26,M,3905 +1975,4,27,F,3583 +1975,4,27,M,3579 +1975,4,28,F,4278 +1975,4,28,M,4471 +1975,4,29,F,4489 +1975,4,29,M,4762 +1975,4,30,F,4295 +1975,4,30,M,4366 +1975,4,31,F,2 +1975,4,31,M,2 +1975,4,99,F,10 +1975,4,99,M,6 +1975,5,1,F,4145 +1975,5,1,M,4509 +1975,5,2,F,4242 +1975,5,2,M,4429 +1975,5,3,F,3623 +1975,5,3,M,3956 +1975,5,4,F,3558 +1975,5,4,M,3638 +1975,5,5,F,4258 +1975,5,5,M,4259 +1975,5,6,F,4366 +1975,5,6,M,4595 +1975,5,7,F,4171 +1975,5,7,M,4296 +1975,5,8,F,4178 +1975,5,8,M,4373 +1975,5,9,F,4244 +1975,5,9,M,4617 +1975,5,10,F,3616 +1975,5,10,M,3852 +1975,5,11,F,3471 +1975,5,11,M,3757 +1975,5,12,F,4489 +1975,5,12,M,4549 +1975,5,13,F,4538 +1975,5,13,M,4709 +1975,5,14,F,4340 +1975,5,14,M,4565 +1975,5,15,F,4250 +1975,5,15,M,4584 +1975,5,16,F,4319 +1975,5,16,M,4599 +1975,5,17,F,3886 +1975,5,17,M,4123 +1975,5,18,F,3466 +1975,5,18,M,3803 +1975,5,19,F,4356 +1975,5,19,M,4472 +1975,5,20,F,4655 +1975,5,20,M,4899 +1975,5,21,F,4332 +1975,5,21,M,4711 +1975,5,22,F,4396 +1975,5,22,M,4724 +1975,5,23,F,4433 +1975,5,23,M,4700 +1975,5,24,F,3791 +1975,5,24,M,4015 +1975,5,25,F,3641 +1975,5,25,M,3871 +1975,5,26,F,3631 +1975,5,26,M,3901 +1975,5,27,F,4375 +1975,5,27,M,4417 +1975,5,28,F,4256 +1975,5,28,M,4656 +1975,5,29,F,4396 +1975,5,29,M,4586 +1975,5,30,F,4395 +1975,5,30,M,4605 +1975,5,31,F,3695 +1975,5,31,M,3924 +1975,5,99,F,4 +1975,5,99,M,8 +1975,6,1,F,3470 +1975,6,1,M,3774 +1975,6,2,F,4129 +1975,6,2,M,4426 +1975,6,3,F,4388 +1975,6,3,M,4608 +1975,6,4,F,4259 +1975,6,4,M,4483 +1975,6,5,F,4320 +1975,6,5,M,4463 +1975,6,6,F,4447 +1975,6,6,M,4665 +1975,6,7,F,3701 +1975,6,7,M,3941 +1975,6,8,F,3595 +1975,6,8,M,3554 +1975,6,9,F,4211 +1975,6,9,M,4412 +1975,6,10,F,4412 +1975,6,10,M,4585 +1975,6,11,F,4332 +1975,6,11,M,4512 +1975,6,12,F,4384 +1975,6,12,M,4570 +1975,6,13,F,4251 +1975,6,13,M,4512 +1975,6,14,F,3970 +1975,6,14,M,4021 +1975,6,15,F,3529 +1975,6,15,M,3742 +1975,6,16,F,4207 +1975,6,16,M,4474 +1975,6,17,F,4417 +1975,6,17,M,4795 +1975,6,18,F,4396 +1975,6,18,M,4654 +1975,6,19,F,4354 +1975,6,19,M,4761 +1975,6,20,F,4372 +1975,6,20,M,4667 +1975,6,21,F,3841 +1975,6,21,M,4118 +1975,6,22,F,3667 +1975,6,22,M,3746 +1975,6,23,F,4301 +1975,6,23,M,4858 +1975,6,24,F,4551 +1975,6,24,M,4849 +1975,6,25,F,4492 +1975,6,25,M,4622 +1975,6,26,F,4337 +1975,6,26,M,4687 +1975,6,27,F,4339 +1975,6,27,M,4616 +1975,6,28,F,4002 +1975,6,28,M,4127 +1975,6,29,F,3451 +1975,6,29,M,3962 +1975,6,30,F,4194 +1975,6,30,M,4857 +1975,6,31,F,2 +1975,6,31,M,2 +1975,6,99,F,26 +1975,6,99,M,8 +1975,7,1,F,4629 +1975,7,1,M,4883 +1975,7,2,F,4548 +1975,7,2,M,4792 +1975,7,3,F,4513 +1975,7,3,M,4880 +1975,7,4,F,3757 +1975,7,4,M,4160 +1975,7,5,F,3830 +1975,7,5,M,4158 +1975,7,6,F,3664 +1975,7,6,M,4050 +1975,7,7,F,4631 +1975,7,7,M,4843 +1975,7,8,F,4874 +1975,7,8,M,5204 +1975,7,9,F,4484 +1975,7,9,M,4933 +1975,7,10,F,4527 +1975,7,10,M,4697 +1975,7,11,F,4563 +1975,7,11,M,4888 +1975,7,12,F,3861 +1975,7,12,M,3992 +1975,7,13,F,3666 +1975,7,13,M,3733 +1975,7,14,F,4483 +1975,7,14,M,4812 +1975,7,15,F,4686 +1975,7,15,M,4938 +1975,7,16,F,4632 +1975,7,16,M,4738 +1975,7,17,F,4587 +1975,7,17,M,4899 +1975,7,18,F,4641 +1975,7,18,M,4827 +1975,7,19,F,4140 +1975,7,19,M,4230 +1975,7,20,F,3825 +1975,7,20,M,3990 +1975,7,21,F,4796 +1975,7,21,M,4723 +1975,7,22,F,4908 +1975,7,22,M,5057 +1975,7,23,F,4653 +1975,7,23,M,5098 +1975,7,24,F,4743 +1975,7,24,M,4755 +1975,7,25,F,4651 +1975,7,25,M,4844 +1975,7,26,F,3845 +1975,7,26,M,4287 +1975,7,27,F,3904 +1975,7,27,M,4048 +1975,7,28,F,4535 +1975,7,28,M,4838 +1975,7,29,F,4809 +1975,7,29,M,5063 +1975,7,30,F,4495 +1975,7,30,M,4894 +1975,7,31,F,4569 +1975,7,31,M,4891 +1975,7,99,F,8 +1975,7,99,M,8 +1975,8,1,F,4796 +1975,8,1,M,4912 +1975,8,2,F,4111 +1975,8,2,M,4467 +1975,8,3,F,3921 +1975,8,3,M,4154 +1975,8,4,F,4658 +1975,8,4,M,4932 +1975,8,5,F,4851 +1975,8,5,M,4766 +1975,8,6,F,4646 +1975,8,6,M,5007 +1975,8,7,F,4426 +1975,8,7,M,4840 +1975,8,8,F,4598 +1975,8,8,M,4655 +1975,8,9,F,4000 +1975,8,9,M,4016 +1975,8,10,F,3780 +1975,8,10,M,3906 +1975,8,11,F,4548 +1975,8,11,M,4847 +1975,8,12,F,4824 +1975,8,12,M,5000 +1975,8,13,F,4609 +1975,8,13,M,4884 +1975,8,14,F,4673 +1975,8,14,M,4895 +1975,8,15,F,4582 +1975,8,15,M,5061 +1975,8,16,F,4163 +1975,8,16,M,4342 +1975,8,17,F,3946 +1975,8,17,M,4099 +1975,8,18,F,4430 +1975,8,18,M,4685 +1975,8,19,F,4642 +1975,8,19,M,4882 +1975,8,20,F,4672 +1975,8,20,M,4808 +1975,8,21,F,4531 +1975,8,21,M,4747 +1975,8,22,F,4660 +1975,8,22,M,4783 +1975,8,23,F,4059 +1975,8,23,M,4306 +1975,8,24,F,3934 +1975,8,24,M,4048 +1975,8,25,F,4477 +1975,8,25,M,4937 +1975,8,26,F,4922 +1975,8,26,M,4985 +1975,8,27,F,4679 +1975,8,27,M,4778 +1975,8,28,F,4604 +1975,8,28,M,4767 +1975,8,29,F,4674 +1975,8,29,M,4913 +1975,8,30,F,4003 +1975,8,30,M,4278 +1975,8,31,F,3786 +1975,8,31,M,3874 +1975,8,99,F,6 +1975,8,99,M,9 +1975,9,1,F,3780 +1975,9,1,M,4024 +1975,9,2,F,4668 +1975,9,2,M,4757 +1975,9,3,F,4543 +1975,9,3,M,4986 +1975,9,4,F,4525 +1975,9,4,M,4788 +1975,9,5,F,4673 +1975,9,5,M,4852 +1975,9,6,F,4142 +1975,9,6,M,4324 +1975,9,7,F,3832 +1975,9,7,M,4150 +1975,9,8,F,4428 +1975,9,8,M,4825 +1975,9,9,F,4719 +1975,9,9,M,4943 +1975,9,10,F,4551 +1975,9,10,M,4714 +1975,9,11,F,4559 +1975,9,11,M,4783 +1975,9,12,F,4825 +1975,9,12,M,5188 +1975,9,13,F,4072 +1975,9,13,M,4238 +1975,9,14,F,3808 +1975,9,14,M,3937 +1975,9,15,F,4600 +1975,9,15,M,4782 +1975,9,16,F,4737 +1975,9,16,M,5076 +1975,9,17,F,4632 +1975,9,17,M,4959 +1975,9,18,F,4711 +1975,9,18,M,5032 +1975,9,19,F,4817 +1975,9,19,M,5093 +1975,9,20,F,4189 +1975,9,20,M,4352 +1975,9,21,F,4014 +1975,9,21,M,4203 +1975,9,22,F,4677 +1975,9,22,M,4893 +1975,9,23,F,4736 +1975,9,23,M,5197 +1975,9,24,F,4646 +1975,9,24,M,4933 +1975,9,25,F,4518 +1975,9,25,M,4912 +1975,9,26,F,4666 +1975,9,26,M,4913 +1975,9,27,F,4234 +1975,9,27,M,4398 +1975,9,28,F,3999 +1975,9,28,M,3972 +1975,9,29,F,4682 +1975,9,29,M,4714 +1975,9,30,F,4628 +1975,9,30,M,5037 +1975,9,31,F,6 +1975,9,31,M,2 +1975,9,99,F,4 +1975,9,99,M,5 +1975,10,1,F,4777 +1975,10,1,M,4955 +1975,10,2,F,4618 +1975,10,2,M,4817 +1975,10,3,F,4472 +1975,10,3,M,4814 +1975,10,4,F,4108 +1975,10,4,M,4202 +1975,10,5,F,3893 +1975,10,5,M,4072 +1975,10,6,F,4567 +1975,10,6,M,4614 +1975,10,7,F,4664 +1975,10,7,M,4800 +1975,10,8,F,4475 +1975,10,8,M,4777 +1975,10,9,F,4569 +1975,10,9,M,4660 +1975,10,10,F,4504 +1975,10,10,M,4708 +1975,10,11,F,3925 +1975,10,11,M,4060 +1975,10,12,F,3692 +1975,10,12,M,3909 +1975,10,13,F,4430 +1975,10,13,M,4467 +1975,10,14,F,4498 +1975,10,14,M,4711 +1975,10,15,F,4489 +1975,10,15,M,4745 +1975,10,16,F,4363 +1975,10,16,M,4362 +1975,10,17,F,4342 +1975,10,17,M,4641 +1975,10,18,F,3887 +1975,10,18,M,3832 +1975,10,19,F,3660 +1975,10,19,M,3674 +1975,10,20,F,4169 +1975,10,20,M,4435 +1975,10,21,F,4385 +1975,10,21,M,4534 +1975,10,22,F,4225 +1975,10,22,M,4347 +1975,10,23,F,4212 +1975,10,23,M,4421 +1975,10,24,F,4377 +1975,10,24,M,4509 +1975,10,25,F,3737 +1975,10,25,M,3960 +1975,10,26,F,3541 +1975,10,26,M,3901 +1975,10,27,F,4065 +1975,10,27,M,4532 +1975,10,28,F,4196 +1975,10,28,M,4565 +1975,10,29,F,4231 +1975,10,29,M,4482 +1975,10,30,F,4236 +1975,10,30,M,4291 +1975,10,31,F,4132 +1975,10,31,M,4416 +1975,10,99,M,4 +1975,11,1,F,3773 +1975,11,1,M,3943 +1975,11,2,F,3484 +1975,11,2,M,3738 +1975,11,3,F,4309 +1975,11,3,M,4502 +1975,11,4,F,4374 +1975,11,4,M,4628 +1975,11,5,F,4145 +1975,11,5,M,4469 +1975,11,6,F,4344 +1975,11,6,M,4469 +1975,11,7,F,4352 +1975,11,7,M,4561 +1975,11,8,F,3911 +1975,11,8,M,4013 +1975,11,9,F,3614 +1975,11,9,M,3908 +1975,11,10,F,4295 +1975,11,10,M,4637 +1975,11,11,F,4308 +1975,11,11,M,4618 +1975,11,12,F,4150 +1975,11,12,M,4368 +1975,11,13,F,4377 +1975,11,13,M,4445 +1975,11,14,F,4381 +1975,11,14,M,4615 +1975,11,15,F,3783 +1975,11,15,M,3813 +1975,11,16,F,3591 +1975,11,16,M,3711 +1975,11,17,F,4135 +1975,11,17,M,4425 +1975,11,18,F,4381 +1975,11,18,M,4415 +1975,11,19,F,4390 +1975,11,19,M,4545 +1975,11,20,F,4177 +1975,11,20,M,4358 +1975,11,21,F,4432 +1975,11,21,M,4617 +1975,11,22,F,3796 +1975,11,22,M,3967 +1975,11,23,F,3547 +1975,11,23,M,3845 +1975,11,24,F,4388 +1975,11,24,M,4485 +1975,11,25,F,4628 +1975,11,25,M,4847 +1975,11,26,F,4367 +1975,11,26,M,4543 +1975,11,27,F,3556 +1975,11,27,M,3800 +1975,11,28,F,4140 +1975,11,28,M,4254 +1975,11,29,F,3699 +1975,11,29,M,3867 +1975,11,30,F,3599 +1975,11,30,M,3898 +1975,11,31,F,2 +1975,11,31,M,1 +1975,11,99,F,2 +1975,12,1,F,4239 +1975,12,1,M,4595 +1975,12,2,F,4308 +1975,12,2,M,4794 +1975,12,3,F,4329 +1975,12,3,M,4484 +1975,12,4,F,4301 +1975,12,4,M,4370 +1975,12,5,F,4315 +1975,12,5,M,4541 +1975,12,6,F,3801 +1975,12,6,M,3932 +1975,12,7,F,3628 +1975,12,7,M,3800 +1975,12,8,F,4303 +1975,12,8,M,4608 +1975,12,9,F,4389 +1975,12,9,M,4635 +1975,12,10,F,4337 +1975,12,10,M,4621 +1975,12,11,F,4261 +1975,12,11,M,4517 +1975,12,12,F,4419 +1975,12,12,M,4605 +1975,12,13,F,3791 +1975,12,13,M,4074 +1975,12,14,F,3641 +1975,12,14,M,3887 +1975,12,15,F,4461 +1975,12,15,M,4609 +1975,12,16,F,4714 +1975,12,16,M,4842 +1975,12,17,F,4577 +1975,12,17,M,4635 +1975,12,18,F,4582 +1975,12,18,M,4786 +1975,12,19,F,4550 +1975,12,19,M,4778 +1975,12,20,F,3894 +1975,12,20,M,4018 +1975,12,21,F,3629 +1975,12,21,M,3719 +1975,12,22,F,4232 +1975,12,22,M,4353 +1975,12,23,F,4266 +1975,12,23,M,4501 +1975,12,24,F,3738 +1975,12,24,M,3999 +1975,12,25,F,3421 +1975,12,25,M,3724 +1975,12,26,F,4187 +1975,12,26,M,4411 +1975,12,27,F,3974 +1975,12,27,M,3976 +1975,12,28,F,3624 +1975,12,28,M,3704 +1975,12,29,F,4509 +1975,12,29,M,4888 +1975,12,30,F,4942 +1975,12,30,M,5202 +1975,12,31,F,4549 +1975,12,31,M,5029 +1975,12,99,F,12 +1975,12,99,M,8 +1976,1,1,F,3591 +1976,1,1,M,3711 +1976,1,2,F,3889 +1976,1,2,M,4105 +1976,1,3,F,3625 +1976,1,3,M,3833 +1976,1,4,F,3550 +1976,1,4,M,3701 +1976,1,5,F,4035 +1976,1,5,M,4217 +1976,1,6,F,4289 +1976,1,6,M,4656 +1976,1,7,F,4232 +1976,1,7,M,4379 +1976,1,8,F,4137 +1976,1,8,M,4280 +1976,1,9,F,4210 +1976,1,9,M,4375 +1976,1,10,F,3730 +1976,1,10,M,3904 +1976,1,11,F,3609 +1976,1,11,M,3627 +1976,1,12,F,4220 +1976,1,12,M,4488 +1976,1,13,F,4344 +1976,1,13,M,4704 +1976,1,14,F,4322 +1976,1,14,M,4629 +1976,1,15,F,4307 +1976,1,15,M,4429 +1976,1,16,F,4299 +1976,1,16,M,4548 +1976,1,17,F,3954 +1976,1,17,M,4015 +1976,1,18,F,3565 +1976,1,18,M,3583 +1976,1,19,F,4404 +1976,1,19,M,4489 +1976,1,20,F,4425 +1976,1,20,M,4577 +1976,1,21,F,4124 +1976,1,21,M,4515 +1976,1,22,F,4383 +1976,1,22,M,4510 +1976,1,23,F,4311 +1976,1,23,M,4460 +1976,1,24,F,3812 +1976,1,24,M,4054 +1976,1,25,F,3698 +1976,1,25,M,3821 +1976,1,26,F,4154 +1976,1,26,M,4396 +1976,1,27,F,4310 +1976,1,27,M,4567 +1976,1,28,F,4119 +1976,1,28,M,4540 +1976,1,29,F,4169 +1976,1,29,M,4530 +1976,1,30,F,4198 +1976,1,30,M,4594 +1976,1,31,F,3706 +1976,1,31,M,3996 +1976,1,99,F,21 +1976,1,99,M,18 +1976,2,1,F,3668 +1976,2,1,M,3804 +1976,2,2,F,4360 +1976,2,2,M,4498 +1976,2,3,F,4334 +1976,2,3,M,4512 +1976,2,4,F,4240 +1976,2,4,M,4526 +1976,2,5,F,4174 +1976,2,5,M,4500 +1976,2,6,F,4276 +1976,2,6,M,4541 +1976,2,7,F,3654 +1976,2,7,M,4030 +1976,2,8,F,3642 +1976,2,8,M,3714 +1976,2,9,F,4220 +1976,2,9,M,4321 +1976,2,10,F,4565 +1976,2,10,M,4657 +1976,2,11,F,4358 +1976,2,11,M,4349 +1976,2,12,F,4296 +1976,2,12,M,4483 +1976,2,13,F,4142 +1976,2,13,M,4524 +1976,2,14,F,3848 +1976,2,14,M,4007 +1976,2,15,F,3456 +1976,2,15,M,3874 +1976,2,16,F,4174 +1976,2,16,M,4402 +1976,2,17,F,4393 +1976,2,17,M,4679 +1976,2,18,F,4264 +1976,2,18,M,4562 +1976,2,19,F,4186 +1976,2,19,M,4413 +1976,2,20,F,4239 +1976,2,20,M,4606 +1976,2,21,F,3862 +1976,2,21,M,3890 +1976,2,22,F,3596 +1976,2,22,M,3741 +1976,2,23,F,4202 +1976,2,23,M,4485 +1976,2,24,F,4321 +1976,2,24,M,4413 +1976,2,25,F,4185 +1976,2,25,M,4387 +1976,2,26,F,4243 +1976,2,26,M,4471 +1976,2,27,F,4328 +1976,2,27,M,4414 +1976,2,28,F,3929 +1976,2,28,M,4003 +1976,2,29,F,3681 +1976,2,29,M,3878 +1976,2,30,F,2 +1976,2,99,F,6 +1976,2,99,M,14 +1976,3,1,F,4369 +1976,3,1,M,4490 +1976,3,2,F,4378 +1976,3,2,M,4661 +1976,3,3,F,4339 +1976,3,3,M,4510 +1976,3,4,F,4202 +1976,3,4,M,4415 +1976,3,5,F,4205 +1976,3,5,M,4500 +1976,3,6,F,3715 +1976,3,6,M,3845 +1976,3,7,F,3628 +1976,3,7,M,3624 +1976,3,8,F,4159 +1976,3,8,M,4270 +1976,3,9,F,4279 +1976,3,9,M,4433 +1976,3,10,F,4153 +1976,3,10,M,4401 +1976,3,11,F,4195 +1976,3,11,M,4366 +1976,3,12,F,4214 +1976,3,12,M,4440 +1976,3,13,F,3744 +1976,3,13,M,3930 +1976,3,14,F,3541 +1976,3,14,M,3593 +1976,3,15,F,4168 +1976,3,15,M,4299 +1976,3,16,F,4221 +1976,3,16,M,4415 +1976,3,17,F,4248 +1976,3,17,M,4433 +1976,3,18,F,4119 +1976,3,18,M,4353 +1976,3,19,F,4255 +1976,3,19,M,4368 +1976,3,20,F,3903 +1976,3,20,M,3987 +1976,3,21,F,3615 +1976,3,21,M,3769 +1976,3,22,F,4153 +1976,3,22,M,4362 +1976,3,23,F,4260 +1976,3,23,M,4603 +1976,3,24,F,3995 +1976,3,24,M,4394 +1976,3,25,F,4161 +1976,3,25,M,4462 +1976,3,26,F,4363 +1976,3,26,M,4381 +1976,3,27,F,3690 +1976,3,27,M,4035 +1976,3,28,F,3555 +1976,3,28,M,3712 +1976,3,29,F,4196 +1976,3,29,M,4303 +1976,3,30,F,4311 +1976,3,30,M,4507 +1976,3,31,F,4223 +1976,3,31,M,4430 +1976,3,99,F,14 +1976,3,99,M,17 +1976,4,1,F,4126 +1976,4,1,M,4210 +1976,4,2,F,4250 +1976,4,2,M,4391 +1976,4,3,F,3646 +1976,4,3,M,3937 +1976,4,4,F,3588 +1976,4,4,M,3843 +1976,4,5,F,4106 +1976,4,5,M,4173 +1976,4,6,F,4125 +1976,4,6,M,4461 +1976,4,7,F,4223 +1976,4,7,M,4345 +1976,4,8,F,4137 +1976,4,8,M,4370 +1976,4,9,F,4020 +1976,4,9,M,4267 +1976,4,10,F,3598 +1976,4,10,M,3784 +1976,4,11,F,3451 +1976,4,11,M,3605 +1976,4,12,F,4171 +1976,4,12,M,4361 +1976,4,13,F,4135 +1976,4,13,M,4324 +1976,4,14,F,4141 +1976,4,14,M,4553 +1976,4,15,F,4107 +1976,4,15,M,4476 +1976,4,16,F,4063 +1976,4,16,M,4195 +1976,4,17,F,3741 +1976,4,17,M,3797 +1976,4,18,F,3446 +1976,4,18,M,3653 +1976,4,19,F,4062 +1976,4,19,M,4265 +1976,4,20,F,4438 +1976,4,20,M,4598 +1976,4,21,F,4098 +1976,4,21,M,4420 +1976,4,22,F,4031 +1976,4,22,M,4354 +1976,4,23,F,4202 +1976,4,23,M,4295 +1976,4,24,F,3579 +1976,4,24,M,3723 +1976,4,25,F,3320 +1976,4,25,M,3497 +1976,4,26,F,3985 +1976,4,26,M,4347 +1976,4,27,F,4101 +1976,4,27,M,4389 +1976,4,28,F,4118 +1976,4,28,M,4172 +1976,4,29,F,3971 +1976,4,29,M,4122 +1976,4,30,F,4134 +1976,4,30,M,4238 +1976,4,31,F,3 +1976,4,99,F,10 +1976,4,99,M,6 +1976,5,1,F,3703 +1976,5,1,M,3909 +1976,5,2,F,3378 +1976,5,2,M,3712 +1976,5,3,F,4109 +1976,5,3,M,4124 +1976,5,4,F,4330 +1976,5,4,M,4453 +1976,5,5,F,4321 +1976,5,5,M,4281 +1976,5,6,F,4145 +1976,5,6,M,4375 +1976,5,7,F,4284 +1976,5,7,M,4356 +1976,5,8,F,3580 +1976,5,8,M,3799 +1976,5,9,F,3273 +1976,5,9,M,3402 +1976,5,10,F,4122 +1976,5,10,M,4450 +1976,5,11,F,4413 +1976,5,11,M,4463 +1976,5,12,F,4189 +1976,5,12,M,4195 +1976,5,13,F,4042 +1976,5,13,M,4197 +1976,5,14,F,4162 +1976,5,14,M,4465 +1976,5,15,F,3651 +1976,5,15,M,3858 +1976,5,16,F,3533 +1976,5,16,M,3624 +1976,5,17,F,4225 +1976,5,17,M,4515 +1976,5,18,F,4243 +1976,5,18,M,4351 +1976,5,19,F,4128 +1976,5,19,M,4361 +1976,5,20,F,4081 +1976,5,20,M,4333 +1976,5,21,F,4228 +1976,5,21,M,4505 +1976,5,22,F,3624 +1976,5,22,M,3841 +1976,5,23,F,3316 +1976,5,23,M,3698 +1976,5,24,F,4211 +1976,5,24,M,4543 +1976,5,25,F,4279 +1976,5,25,M,4582 +1976,5,26,F,4066 +1976,5,26,M,4367 +1976,5,27,F,4129 +1976,5,27,M,4401 +1976,5,28,F,4286 +1976,5,28,M,4612 +1976,5,29,F,3812 +1976,5,29,M,3933 +1976,5,30,F,3567 +1976,5,30,M,3636 +1976,5,31,F,3618 +1976,5,31,M,3969 +1976,5,99,F,6 +1976,5,99,M,9 +1976,6,1,F,4390 +1976,6,1,M,4537 +1976,6,2,F,4192 +1976,6,2,M,4557 +1976,6,3,F,4300 +1976,6,3,M,4486 +1976,6,4,F,4459 +1976,6,4,M,4395 +1976,6,5,F,3498 +1976,6,5,M,3892 +1976,6,6,F,3629 +1976,6,6,M,3674 +1976,6,7,F,4094 +1976,6,7,M,4321 +1976,6,8,F,4410 +1976,6,8,M,4697 +1976,6,9,F,4219 +1976,6,9,M,4583 +1976,6,10,F,4376 +1976,6,10,M,4610 +1976,6,11,F,4393 +1976,6,11,M,4667 +1976,6,12,F,3848 +1976,6,12,M,4046 +1976,6,13,F,3671 +1976,6,13,M,3769 +1976,6,14,F,4379 +1976,6,14,M,4593 +1976,6,15,F,4298 +1976,6,15,M,4762 +1976,6,16,F,4313 +1976,6,16,M,4655 +1976,6,17,F,4134 +1976,6,17,M,4697 +1976,6,18,F,4233 +1976,6,18,M,4600 +1976,6,19,F,3792 +1976,6,19,M,4037 +1976,6,20,F,3573 +1976,6,20,M,3824 +1976,6,21,F,4105 +1976,6,21,M,4359 +1976,6,22,F,4428 +1976,6,22,M,4620 +1976,6,23,F,4393 +1976,6,23,M,4510 +1976,6,24,F,4463 +1976,6,24,M,4554 +1976,6,25,F,4420 +1976,6,25,M,4706 +1976,6,26,F,3778 +1976,6,26,M,4049 +1976,6,27,F,3736 +1976,6,27,M,3878 +1976,6,28,F,4434 +1976,6,28,M,4637 +1976,6,29,F,4532 +1976,6,29,M,4955 +1976,6,30,F,4362 +1976,6,30,M,4770 +1976,6,31,F,2 +1976,6,99,F,14 +1976,6,99,M,12 +1976,7,1,F,4403 +1976,7,1,M,4669 +1976,7,2,F,4548 +1976,7,2,M,4812 +1976,7,3,F,3814 +1976,7,3,M,4104 +1976,7,4,F,3882 +1976,7,4,M,4011 +1976,7,5,F,3630 +1976,7,5,M,3934 +1976,7,6,F,4498 +1976,7,6,M,4729 +1976,7,7,F,4838 +1976,7,7,M,5109 +1976,7,8,F,4651 +1976,7,8,M,4898 +1976,7,9,F,4707 +1976,7,9,M,4880 +1976,7,10,F,4096 +1976,7,10,M,4173 +1976,7,11,F,3806 +1976,7,11,M,4187 +1976,7,12,F,4464 +1976,7,12,M,4804 +1976,7,13,F,4656 +1976,7,13,M,4820 +1976,7,14,F,4451 +1976,7,14,M,4901 +1976,7,15,F,4694 +1976,7,15,M,4768 +1976,7,16,F,4715 +1976,7,16,M,4853 +1976,7,17,F,3950 +1976,7,17,M,4197 +1976,7,18,F,3791 +1976,7,18,M,3785 +1976,7,19,F,4520 +1976,7,19,M,4780 +1976,7,20,F,4671 +1976,7,20,M,4759 +1976,7,21,F,4589 +1976,7,21,M,4855 +1976,7,22,F,4623 +1976,7,22,M,4788 +1976,7,23,F,4635 +1976,7,23,M,4820 +1976,7,24,F,4181 +1976,7,24,M,4281 +1976,7,25,F,3921 +1976,7,25,M,3890 +1976,7,26,F,4530 +1976,7,26,M,4862 +1976,7,27,F,4802 +1976,7,27,M,4882 +1976,7,28,F,4571 +1976,7,28,M,4593 +1976,7,29,F,4535 +1976,7,29,M,4834 +1976,7,30,F,4720 +1976,7,30,M,4965 +1976,7,31,F,3967 +1976,7,31,M,4267 +1976,7,99,F,6 +1976,7,99,M,2 +1976,8,1,F,3863 +1976,8,1,M,3994 +1976,8,2,F,4377 +1976,8,2,M,4660 +1976,8,3,F,4705 +1976,8,3,M,4878 +1976,8,4,F,4421 +1976,8,4,M,4644 +1976,8,5,F,4562 +1976,8,5,M,4831 +1976,8,6,F,4808 +1976,8,6,M,4847 +1976,8,7,F,4027 +1976,8,7,M,4397 +1976,8,8,F,3870 +1976,8,8,M,4154 +1976,8,9,F,4583 +1976,8,9,M,4760 +1976,8,10,F,4784 +1976,8,10,M,5048 +1976,8,11,F,4573 +1976,8,11,M,4744 +1976,8,12,F,4642 +1976,8,12,M,5080 +1976,8,13,F,4665 +1976,8,13,M,4873 +1976,8,14,F,4066 +1976,8,14,M,4262 +1976,8,15,F,3841 +1976,8,15,M,3982 +1976,8,16,F,4506 +1976,8,16,M,4829 +1976,8,17,F,4671 +1976,8,17,M,4952 +1976,8,18,F,4593 +1976,8,18,M,4926 +1976,8,19,F,4620 +1976,8,19,M,4835 +1976,8,20,F,4443 +1976,8,20,M,4830 +1976,8,21,F,4250 +1976,8,21,M,4498 +1976,8,22,F,4079 +1976,8,22,M,4208 +1976,8,23,F,4530 +1976,8,23,M,4926 +1976,8,24,F,4827 +1976,8,24,M,5050 +1976,8,25,F,4641 +1976,8,25,M,4840 +1976,8,26,F,4759 +1976,8,26,M,4901 +1976,8,27,F,4887 +1976,8,27,M,4975 +1976,8,28,F,4059 +1976,8,28,M,4439 +1976,8,29,F,3873 +1976,8,29,M,4125 +1976,8,30,F,4430 +1976,8,30,M,4729 +1976,8,31,F,4639 +1976,8,31,M,4963 +1976,8,99,F,8 +1976,8,99,M,4 +1976,9,1,F,4654 +1976,9,1,M,4822 +1976,9,2,F,4530 +1976,9,2,M,4794 +1976,9,3,F,4691 +1976,9,3,M,4976 +1976,9,4,F,3987 +1976,9,4,M,4420 +1976,9,5,F,3828 +1976,9,5,M,3979 +1976,9,6,F,3828 +1976,9,6,M,4255 +1976,9,7,F,4696 +1976,9,7,M,4958 +1976,9,8,F,4901 +1976,9,8,M,5265 +1976,9,9,F,4835 +1976,9,9,M,5155 +1976,9,10,F,4837 +1976,9,10,M,5161 +1976,9,11,F,4137 +1976,9,11,M,4276 +1976,9,12,F,3958 +1976,9,12,M,4184 +1976,9,13,F,4659 +1976,9,13,M,4982 +1976,9,14,F,4962 +1976,9,14,M,5203 +1976,9,15,F,4885 +1976,9,15,M,5092 +1976,9,16,F,4869 +1976,9,16,M,5087 +1976,9,17,F,4794 +1976,9,17,M,5191 +1976,9,18,F,4317 +1976,9,18,M,4421 +1976,9,19,F,4129 +1976,9,19,M,4456 +1976,9,20,F,4972 +1976,9,20,M,5079 +1976,9,21,F,5075 +1976,9,21,M,5221 +1976,9,22,F,4920 +1976,9,22,M,4916 +1976,9,23,F,4751 +1976,9,23,M,5064 +1976,9,24,F,4943 +1976,9,24,M,5109 +1976,9,25,F,4422 +1976,9,25,M,4370 +1976,9,26,F,4109 +1976,9,26,M,4401 +1976,9,27,F,4913 +1976,9,27,M,5113 +1976,9,28,F,4935 +1976,9,28,M,5211 +1976,9,29,F,4757 +1976,9,29,M,5060 +1976,9,30,F,4641 +1976,9,30,M,5077 +1976,9,31,M,1 +1976,9,99,F,2 +1976,9,99,M,4 +1976,10,1,F,4757 +1976,10,1,M,5102 +1976,10,2,F,4271 +1976,10,2,M,4420 +1976,10,3,F,4002 +1976,10,3,M,4268 +1976,10,4,F,4719 +1976,10,4,M,4937 +1976,10,5,F,4663 +1976,10,5,M,5126 +1976,10,6,F,4674 +1976,10,6,M,4809 +1976,10,7,F,4541 +1976,10,7,M,4920 +1976,10,8,F,4693 +1976,10,8,M,4872 +1976,10,9,F,4043 +1976,10,9,M,4219 +1976,10,10,F,4061 +1976,10,10,M,4252 +1976,10,11,F,4527 +1976,10,11,M,4869 +1976,10,12,F,4671 +1976,10,12,M,4951 +1976,10,13,F,4472 +1976,10,13,M,4711 +1976,10,14,F,4527 +1976,10,14,M,4726 +1976,10,15,F,4709 +1976,10,15,M,4855 +1976,10,16,F,4051 +1976,10,16,M,4136 +1976,10,17,F,3888 +1976,10,17,M,3926 +1976,10,18,F,4490 +1976,10,18,M,4758 +1976,10,19,F,4438 +1976,10,19,M,4810 +1976,10,20,F,4539 +1976,10,20,M,5036 +1976,10,21,F,4485 +1976,10,21,M,4772 +1976,10,22,F,4622 +1976,10,22,M,4820 +1976,10,23,F,4114 +1976,10,23,M,4087 +1976,10,24,F,3821 +1976,10,24,M,4027 +1976,10,25,F,4563 +1976,10,25,M,4635 +1976,10,26,F,4672 +1976,10,26,M,4731 +1976,10,27,F,4502 +1976,10,27,M,4710 +1976,10,28,F,4278 +1976,10,28,M,4579 +1976,10,29,F,4464 +1976,10,29,M,4652 +1976,10,30,F,3942 +1976,10,30,M,4026 +1976,10,31,F,3911 +1976,10,31,M,4167 +1976,10,99,F,4 +1976,10,99,M,2 +1976,11,1,F,4400 +1976,11,1,M,4607 +1976,11,2,F,4359 +1976,11,2,M,4796 +1976,11,3,F,4373 +1976,11,3,M,4642 +1976,11,4,F,4475 +1976,11,4,M,4617 +1976,11,5,F,4519 +1976,11,5,M,4788 +1976,11,6,F,3837 +1976,11,6,M,4027 +1976,11,7,F,3760 +1976,11,7,M,4100 +1976,11,8,F,4514 +1976,11,8,M,4847 +1976,11,9,F,4596 +1976,11,9,M,4884 +1976,11,10,F,4560 +1976,11,10,M,4872 +1976,11,11,F,4535 +1976,11,11,M,4894 +1976,11,12,F,4514 +1976,11,12,M,4690 +1976,11,13,F,3874 +1976,11,13,M,4039 +1976,11,14,F,3809 +1976,11,14,M,3843 +1976,11,15,F,4380 +1976,11,15,M,4651 +1976,11,16,F,4609 +1976,11,16,M,4960 +1976,11,17,F,4522 +1976,11,17,M,4774 +1976,11,18,F,4455 +1976,11,18,M,4726 +1976,11,19,F,4604 +1976,11,19,M,4854 +1976,11,20,F,3876 +1976,11,20,M,4091 +1976,11,21,F,3784 +1976,11,21,M,3923 +1976,11,22,F,4440 +1976,11,22,M,4720 +1976,11,23,F,4459 +1976,11,23,M,4857 +1976,11,24,F,4387 +1976,11,24,M,4621 +1976,11,25,F,3589 +1976,11,25,M,3903 +1976,11,26,F,4202 +1976,11,26,M,4531 +1976,11,27,F,3903 +1976,11,27,M,4063 +1976,11,28,F,3691 +1976,11,28,M,3894 +1976,11,29,F,4563 +1976,11,29,M,4700 +1976,11,30,F,4617 +1976,11,30,M,4933 +1976,11,31,F,1 +1976,11,31,M,12 +1976,11,99,F,4 +1976,12,1,F,4440 +1976,12,1,M,4605 +1976,12,2,F,4256 +1976,12,2,M,4713 +1976,12,3,F,4407 +1976,12,3,M,4635 +1976,12,4,F,3855 +1976,12,4,M,4034 +1976,12,5,F,3692 +1976,12,5,M,3948 +1976,12,6,F,4403 +1976,12,6,M,4795 +1976,12,7,F,4701 +1976,12,7,M,4936 +1976,12,8,F,4489 +1976,12,8,M,4726 +1976,12,9,F,4579 +1976,12,9,M,4684 +1976,12,10,F,4463 +1976,12,10,M,4696 +1976,12,11,F,3806 +1976,12,11,M,4163 +1976,12,12,F,3909 +1976,12,12,M,3860 +1976,12,13,F,4474 +1976,12,13,M,4766 +1976,12,14,F,4641 +1976,12,14,M,4918 +1976,12,15,F,4684 +1976,12,15,M,4832 +1976,12,16,F,4597 +1976,12,16,M,4853 +1976,12,17,F,4906 +1976,12,17,M,4984 +1976,12,18,F,3918 +1976,12,18,M,4063 +1976,12,19,F,3633 +1976,12,19,M,3872 +1976,12,20,F,4755 +1976,12,20,M,5027 +1976,12,21,F,4644 +1976,12,21,M,5132 +1976,12,22,F,4244 +1976,12,22,M,4350 +1976,12,23,F,3890 +1976,12,23,M,4214 +1976,12,24,F,3708 +1976,12,24,M,3813 +1976,12,25,F,3564 +1976,12,25,M,3621 +1976,12,26,F,3628 +1976,12,26,M,3982 +1976,12,27,F,4426 +1976,12,27,M,4916 +1976,12,28,F,4905 +1976,12,28,M,5210 +1976,12,29,F,4974 +1976,12,29,M,5114 +1976,12,30,F,4744 +1976,12,30,M,5107 +1976,12,31,F,4342 +1976,12,31,M,4622 +1976,12,99,F,2 +1976,12,99,M,4 +1977,1,1,F,3561 +1977,1,1,M,3855 +1977,1,2,F,3616 +1977,1,2,M,3851 +1977,1,3,F,4182 +1977,1,3,M,4521 +1977,1,4,F,4514 +1977,1,4,M,4590 +1977,1,5,F,4293 +1977,1,5,M,4691 +1977,1,6,F,4334 +1977,1,6,M,4637 +1977,1,7,F,4358 +1977,1,7,M,4854 +1977,1,8,F,3836 +1977,1,8,M,4177 +1977,1,9,F,3763 +1977,1,9,M,3798 +1977,1,10,F,4430 +1977,1,10,M,4712 +1977,1,11,F,4515 +1977,1,11,M,4665 +1977,1,12,F,4505 +1977,1,12,M,4752 +1977,1,13,F,4600 +1977,1,13,M,4850 +1977,1,14,F,4578 +1977,1,14,M,4739 +1977,1,15,F,3891 +1977,1,15,M,4152 +1977,1,16,F,3719 +1977,1,16,M,3947 +1977,1,17,F,4657 +1977,1,17,M,4739 +1977,1,18,F,4768 +1977,1,18,M,4860 +1977,1,19,F,4595 +1977,1,19,M,4578 +1977,1,20,F,4526 +1977,1,20,M,4703 +1977,1,21,F,4604 +1977,1,21,M,4787 +1977,1,22,F,4050 +1977,1,22,M,4118 +1977,1,23,F,3740 +1977,1,23,M,3880 +1977,1,24,F,4438 +1977,1,24,M,4808 +1977,1,25,F,4745 +1977,1,25,M,4830 +1977,1,26,F,4470 +1977,1,26,M,4800 +1977,1,27,F,4607 +1977,1,27,M,4732 +1977,1,28,F,4566 +1977,1,28,M,4856 +1977,1,29,F,3897 +1977,1,29,M,4144 +1977,1,30,F,3763 +1977,1,30,M,4006 +1977,1,31,F,4568 +1977,1,31,M,4683 +1977,1,99,F,4 +1977,2,1,F,4653 +1977,2,1,M,4833 +1977,2,2,F,4481 +1977,2,2,M,4552 +1977,2,3,F,4483 +1977,2,3,M,4761 +1977,2,4,F,4600 +1977,2,4,M,4820 +1977,2,5,F,4082 +1977,2,5,M,4095 +1977,2,6,F,3717 +1977,2,6,M,3976 +1977,2,7,F,4410 +1977,2,7,M,4712 +1977,2,8,F,4428 +1977,2,8,M,4667 +1977,2,9,F,4531 +1977,2,9,M,4737 +1977,2,10,F,4611 +1977,2,10,M,4925 +1977,2,11,F,4588 +1977,2,11,M,4883 +1977,2,12,F,4124 +1977,2,12,M,4368 +1977,2,13,F,4022 +1977,2,13,M,4063 +1977,2,14,F,4761 +1977,2,14,M,5072 +1977,2,15,F,4812 +1977,2,15,M,4903 +1977,2,16,F,4529 +1977,2,16,M,4890 +1977,2,17,F,4720 +1977,2,17,M,4845 +1977,2,18,F,4617 +1977,2,18,M,4879 +1977,2,19,F,4116 +1977,2,19,M,4059 +1977,2,20,F,3898 +1977,2,20,M,4112 +1977,2,21,F,4488 +1977,2,21,M,4624 +1977,2,22,F,4803 +1977,2,22,M,5024 +1977,2,23,F,4638 +1977,2,23,M,4991 +1977,2,24,F,4656 +1977,2,24,M,4794 +1977,2,25,F,4573 +1977,2,25,M,5075 +1977,2,26,F,4144 +1977,2,26,M,4381 +1977,2,27,F,3848 +1977,2,27,M,4056 +1977,2,28,F,4580 +1977,2,28,M,4781 +1977,2,29,F,3 +1977,2,30,F,4 +1977,2,31,F,1 +1977,2,99,F,2 +1977,2,99,M,2 +1977,3,1,F,4712 +1977,3,1,M,5123 +1977,3,2,F,4591 +1977,3,2,M,4856 +1977,3,3,F,4785 +1977,3,3,M,4758 +1977,3,4,F,4785 +1977,3,4,M,4992 +1977,3,5,F,4036 +1977,3,5,M,4316 +1977,3,6,F,3760 +1977,3,6,M,4024 +1977,3,7,F,4598 +1977,3,7,M,4761 +1977,3,8,F,4865 +1977,3,8,M,5168 +1977,3,9,F,4608 +1977,3,9,M,4748 +1977,3,10,F,4592 +1977,3,10,M,4764 +1977,3,11,F,4579 +1977,3,11,M,4918 +1977,3,12,F,4053 +1977,3,12,M,4213 +1977,3,13,F,3937 +1977,3,13,M,4001 +1977,3,14,F,4505 +1977,3,14,M,4873 +1977,3,15,F,4703 +1977,3,15,M,4981 +1977,3,16,F,4635 +1977,3,16,M,4832 +1977,3,17,F,4589 +1977,3,17,M,4723 +1977,3,18,F,4447 +1977,3,18,M,4813 +1977,3,19,F,4015 +1977,3,19,M,4155 +1977,3,20,F,3818 +1977,3,20,M,4018 +1977,3,21,F,4498 +1977,3,21,M,4584 +1977,3,22,F,4676 +1977,3,22,M,4858 +1977,3,23,F,4545 +1977,3,23,M,4627 +1977,3,24,F,4494 +1977,3,24,M,4761 +1977,3,25,F,4574 +1977,3,25,M,4771 +1977,3,26,F,3866 +1977,3,26,M,4093 +1977,3,27,F,3671 +1977,3,27,M,4098 +1977,3,28,F,4487 +1977,3,28,M,4810 +1977,3,29,F,4656 +1977,3,29,M,4993 +1977,3,30,F,4526 +1977,3,30,M,4884 +1977,3,31,F,4590 +1977,3,31,M,4855 +1977,3,99,F,2 +1977,3,99,M,2 +1977,4,1,F,4420 +1977,4,1,M,4577 +1977,4,2,F,3937 +1977,4,2,M,4121 +1977,4,3,F,3881 +1977,4,3,M,4075 +1977,4,4,F,4617 +1977,4,4,M,4669 +1977,4,5,F,4662 +1977,4,5,M,4844 +1977,4,6,F,4424 +1977,4,6,M,4705 +1977,4,7,F,4360 +1977,4,7,M,4788 +1977,4,8,F,4448 +1977,4,8,M,4543 +1977,4,9,F,3727 +1977,4,9,M,4007 +1977,4,10,F,3577 +1977,4,10,M,3799 +1977,4,11,F,4391 +1977,4,11,M,4580 +1977,4,12,F,4658 +1977,4,12,M,5018 +1977,4,13,F,4493 +1977,4,13,M,4723 +1977,4,14,F,4431 +1977,4,14,M,4670 +1977,4,15,F,4411 +1977,4,15,M,4888 +1977,4,16,F,3962 +1977,4,16,M,4077 +1977,4,17,F,3693 +1977,4,17,M,3900 +1977,4,18,F,4475 +1977,4,18,M,4882 +1977,4,19,F,4668 +1977,4,19,M,5023 +1977,4,20,F,4614 +1977,4,20,M,4653 +1977,4,21,F,4431 +1977,4,21,M,4713 +1977,4,22,F,4532 +1977,4,22,M,4626 +1977,4,23,F,3862 +1977,4,23,M,4057 +1977,4,24,F,3530 +1977,4,24,M,3672 +1977,4,25,F,4434 +1977,4,25,M,4577 +1977,4,26,F,4623 +1977,4,26,M,4809 +1977,4,27,F,4232 +1977,4,27,M,4591 +1977,4,28,F,4354 +1977,4,28,M,4630 +1977,4,29,F,4274 +1977,4,29,M,4657 +1977,4,30,F,3794 +1977,4,30,M,4072 +1977,4,31,F,1 +1977,5,1,F,3666 +1977,5,1,M,3968 +1977,5,2,F,4584 +1977,5,2,M,4801 +1977,5,3,F,4489 +1977,5,3,M,4955 +1977,5,4,F,4502 +1977,5,4,M,4895 +1977,5,5,F,4587 +1977,5,5,M,4799 +1977,5,6,F,4505 +1977,5,6,M,5030 +1977,5,7,F,3868 +1977,5,7,M,4214 +1977,5,8,F,3676 +1977,5,8,M,3967 +1977,5,9,F,4227 +1977,5,9,M,4622 +1977,5,10,F,4544 +1977,5,10,M,4860 +1977,5,11,F,4235 +1977,5,11,M,4657 +1977,5,12,F,4537 +1977,5,12,M,4673 +1977,5,13,F,4625 +1977,5,13,M,4689 +1977,5,14,F,3949 +1977,5,14,M,4159 +1977,5,15,F,3664 +1977,5,15,M,3857 +1977,5,16,F,4539 +1977,5,16,M,4950 +1977,5,17,F,4670 +1977,5,17,M,4972 +1977,5,18,F,4537 +1977,5,18,M,4876 +1977,5,19,F,4453 +1977,5,19,M,4790 +1977,5,20,F,4717 +1977,5,20,M,4737 +1977,5,21,F,3809 +1977,5,21,M,4085 +1977,5,22,F,3831 +1977,5,22,M,3900 +1977,5,23,F,4585 +1977,5,23,M,4836 +1977,5,24,F,4579 +1977,5,24,M,5024 +1977,5,25,F,4662 +1977,5,25,M,4866 +1977,5,26,F,4556 +1977,5,26,M,4812 +1977,5,27,F,4584 +1977,5,27,M,5025 +1977,5,28,F,3968 +1977,5,28,M,4116 +1977,5,29,F,3790 +1977,5,29,M,3954 +1977,5,30,F,3742 +1977,5,30,M,4003 +1977,5,31,F,4635 +1977,5,31,M,4762 +1977,5,99,F,2 +1977,5,99,M,1 +1977,6,1,F,4789 +1977,6,1,M,4879 +1977,6,2,F,4489 +1977,6,2,M,4855 +1977,6,3,F,4566 +1977,6,3,M,4859 +1977,6,4,F,3942 +1977,6,4,M,4107 +1977,6,5,F,3878 +1977,6,5,M,4011 +1977,6,6,F,4629 +1977,6,6,M,4645 +1977,6,7,F,4658 +1977,6,7,M,4889 +1977,6,8,F,4418 +1977,6,8,M,4787 +1977,6,9,F,4570 +1977,6,9,M,4823 +1977,6,10,F,4461 +1977,6,10,M,4776 +1977,6,11,F,3938 +1977,6,11,M,4082 +1977,6,12,F,3691 +1977,6,12,M,3922 +1977,6,13,F,4465 +1977,6,13,M,4864 +1977,6,14,F,4677 +1977,6,14,M,4952 +1977,6,15,F,4651 +1977,6,15,M,4888 +1977,6,16,F,4785 +1977,6,16,M,4951 +1977,6,17,F,4693 +1977,6,17,M,5053 +1977,6,18,F,4030 +1977,6,18,M,4197 +1977,6,19,F,3855 +1977,6,19,M,3940 +1977,6,20,F,4725 +1977,6,20,M,4803 +1977,6,21,F,4667 +1977,6,21,M,5001 +1977,6,22,F,4566 +1977,6,22,M,4857 +1977,6,23,F,4472 +1977,6,23,M,5017 +1977,6,24,F,4647 +1977,6,24,M,4965 +1977,6,25,F,3997 +1977,6,25,M,4341 +1977,6,26,F,3909 +1977,6,26,M,4129 +1977,6,27,F,4613 +1977,6,27,M,5044 +1977,6,28,F,4793 +1977,6,28,M,5201 +1977,6,29,F,4740 +1977,6,29,M,4995 +1977,6,30,F,4670 +1977,6,30,M,4942 +1977,6,31,F,2 +1977,6,31,M,2 +1977,6,99,F,8 +1977,6,99,M,6 +1977,7,1,F,4757 +1977,7,1,M,4989 +1977,7,2,F,4036 +1977,7,2,M,4275 +1977,7,3,F,3888 +1977,7,3,M,3973 +1977,7,4,F,4083 +1977,7,4,M,4088 +1977,7,5,F,4642 +1977,7,5,M,5006 +1977,7,6,F,5073 +1977,7,6,M,5460 +1977,7,7,F,5118 +1977,7,7,M,5306 +1977,7,8,F,5073 +1977,7,8,M,5161 +1977,7,9,F,4272 +1977,7,9,M,4521 +1977,7,10,F,3917 +1977,7,10,M,4066 +1977,7,11,F,4636 +1977,7,11,M,4954 +1977,7,12,F,4867 +1977,7,12,M,5130 +1977,7,13,F,4839 +1977,7,13,M,5081 +1977,7,14,F,4869 +1977,7,14,M,5185 +1977,7,15,F,4942 +1977,7,15,M,5234 +1977,7,16,F,4234 +1977,7,16,M,4433 +1977,7,17,F,3878 +1977,7,17,M,4180 +1977,7,18,F,4708 +1977,7,18,M,5073 +1977,7,19,F,4943 +1977,7,19,M,5230 +1977,7,20,F,4923 +1977,7,20,M,5209 +1977,7,21,F,4820 +1977,7,21,M,5058 +1977,7,22,F,5001 +1977,7,22,M,5179 +1977,7,23,F,4135 +1977,7,23,M,4353 +1977,7,24,F,3951 +1977,7,24,M,4235 +1977,7,25,F,4661 +1977,7,25,M,5110 +1977,7,26,F,4977 +1977,7,26,M,5151 +1977,7,27,F,4642 +1977,7,27,M,5046 +1977,7,28,F,4778 +1977,7,28,M,5048 +1977,7,29,F,4894 +1977,7,29,M,5190 +1977,7,30,F,4314 +1977,7,30,M,4503 +1977,7,31,F,3949 +1977,7,31,M,4274 +1977,7,99,F,6 +1977,7,99,M,8 +1977,8,1,F,4715 +1977,8,1,M,5095 +1977,8,2,F,5065 +1977,8,2,M,5216 +1977,8,3,F,4755 +1977,8,3,M,5135 +1977,8,4,F,4874 +1977,8,4,M,4946 +1977,8,5,F,5044 +1977,8,5,M,5256 +1977,8,6,F,4326 +1977,8,6,M,4482 +1977,8,7,F,4109 +1977,8,7,M,4292 +1977,8,8,F,4763 +1977,8,8,M,5192 +1977,8,9,F,4930 +1977,8,9,M,5342 +1977,8,10,F,5000 +1977,8,10,M,5212 +1977,8,11,F,4834 +1977,8,11,M,4926 +1977,8,12,F,4896 +1977,8,12,M,5203 +1977,8,13,F,4181 +1977,8,13,M,4488 +1977,8,14,F,4075 +1977,8,14,M,4170 +1977,8,15,F,4816 +1977,8,15,M,5036 +1977,8,16,F,5039 +1977,8,16,M,5320 +1977,8,17,F,4840 +1977,8,17,M,5068 +1977,8,18,F,4776 +1977,8,18,M,5080 +1977,8,19,F,5049 +1977,8,19,M,4954 +1977,8,20,F,4120 +1977,8,20,M,4411 +1977,8,21,F,4101 +1977,8,21,M,4268 +1977,8,22,F,4852 +1977,8,22,M,5126 +1977,8,23,F,5029 +1977,8,23,M,5384 +1977,8,24,F,4983 +1977,8,24,M,5135 +1977,8,25,F,4912 +1977,8,25,M,5110 +1977,8,26,F,4781 +1977,8,26,M,5146 +1977,8,27,F,4256 +1977,8,27,M,4565 +1977,8,28,F,4138 +1977,8,28,M,4426 +1977,8,29,F,4800 +1977,8,29,M,5076 +1977,8,30,F,4991 +1977,8,30,M,5427 +1977,8,31,F,5059 +1977,8,31,M,5094 +1977,8,99,F,2 +1977,8,99,M,2 +1977,9,1,F,4875 +1977,9,1,M,5077 +1977,9,2,F,5031 +1977,9,2,M,5156 +1977,9,3,F,4167 +1977,9,3,M,4466 +1977,9,4,F,4018 +1977,9,4,M,4130 +1977,9,5,F,4155 +1977,9,5,M,4183 +1977,9,6,F,4909 +1977,9,6,M,5186 +1977,9,7,F,5058 +1977,9,7,M,5272 +1977,9,8,F,4806 +1977,9,8,M,5314 +1977,9,9,F,5040 +1977,9,9,M,5254 +1977,9,10,F,4204 +1977,9,10,M,4567 +1977,9,11,F,4089 +1977,9,11,M,4291 +1977,9,12,F,4946 +1977,9,12,M,5052 +1977,9,13,F,4938 +1977,9,13,M,5239 +1977,9,14,F,5055 +1977,9,14,M,5168 +1977,9,15,F,4981 +1977,9,15,M,5180 +1977,9,16,F,5130 +1977,9,16,M,5360 +1977,9,17,F,4588 +1977,9,17,M,4573 +1977,9,18,F,4168 +1977,9,18,M,4560 +1977,9,19,F,5121 +1977,9,19,M,5157 +1977,9,20,F,5302 +1977,9,20,M,5345 +1977,9,21,F,5006 +1977,9,21,M,5386 +1977,9,22,F,4906 +1977,9,22,M,5134 +1977,9,23,F,5053 +1977,9,23,M,5275 +1977,9,24,F,4382 +1977,9,24,M,4621 +1977,9,25,F,4202 +1977,9,25,M,4415 +1977,9,26,F,5008 +1977,9,26,M,5371 +1977,9,27,F,5229 +1977,9,27,M,5299 +1977,9,28,F,4960 +1977,9,28,M,5140 +1977,9,29,F,5018 +1977,9,29,M,5062 +1977,9,30,F,4992 +1977,9,30,M,5354 +1977,9,31,F,3 +1977,9,31,M,6 +1977,9,99,F,4 +1977,9,99,M,6 +1977,10,1,F,4446 +1977,10,1,M,4588 +1977,10,2,F,4169 +1977,10,2,M,4448 +1977,10,3,F,4922 +1977,10,3,M,5088 +1977,10,4,F,4926 +1977,10,4,M,5250 +1977,10,5,F,4847 +1977,10,5,M,4957 +1977,10,6,F,4762 +1977,10,6,M,5064 +1977,10,7,F,4836 +1977,10,7,M,5136 +1977,10,8,F,4122 +1977,10,8,M,4438 +1977,10,9,F,4077 +1977,10,9,M,4243 +1977,10,10,F,4797 +1977,10,10,M,4849 +1977,10,11,F,4798 +1977,10,11,M,5131 +1977,10,12,F,4769 +1977,10,12,M,4874 +1977,10,13,F,4693 +1977,10,13,M,4899 +1977,10,14,F,4712 +1977,10,14,M,4913 +1977,10,15,F,4146 +1977,10,15,M,4242 +1977,10,16,F,4048 +1977,10,16,M,4195 +1977,10,17,F,4679 +1977,10,17,M,4825 +1977,10,18,F,4651 +1977,10,18,M,5027 +1977,10,19,F,4764 +1977,10,19,M,4886 +1977,10,20,F,4600 +1977,10,20,M,4986 +1977,10,21,F,4761 +1977,10,21,M,4920 +1977,10,22,F,4051 +1977,10,22,M,4225 +1977,10,23,F,3761 +1977,10,23,M,4062 +1977,10,24,F,4558 +1977,10,24,M,4674 +1977,10,25,F,4754 +1977,10,25,M,5031 +1977,10,26,F,4676 +1977,10,26,M,4891 +1977,10,27,F,4677 +1977,10,27,M,4754 +1977,10,28,F,4535 +1977,10,28,M,4862 +1977,10,29,F,3936 +1977,10,29,M,4247 +1977,10,30,F,3872 +1977,10,30,M,4207 +1977,10,31,F,4366 +1977,10,31,M,4671 +1977,10,99,F,2 +1977,10,99,M,6 +1977,11,1,F,4731 +1977,11,1,M,4872 +1977,11,2,F,4479 +1977,11,2,M,4652 +1977,11,3,F,4576 +1977,11,3,M,4836 +1977,11,4,F,4641 +1977,11,4,M,4944 +1977,11,5,F,4071 +1977,11,5,M,4167 +1977,11,6,F,3803 +1977,11,6,M,4039 +1977,11,7,F,4573 +1977,11,7,M,4865 +1977,11,8,F,4806 +1977,11,8,M,4969 +1977,11,9,F,4503 +1977,11,9,M,4779 +1977,11,10,F,4569 +1977,11,10,M,4849 +1977,11,11,F,4536 +1977,11,11,M,4709 +1977,11,12,F,3958 +1977,11,12,M,4046 +1977,11,13,F,3801 +1977,11,13,M,4094 +1977,11,14,F,4479 +1977,11,14,M,4751 +1977,11,15,F,4849 +1977,11,15,M,4907 +1977,11,16,F,4577 +1977,11,16,M,4842 +1977,11,17,F,4526 +1977,11,17,M,4992 +1977,11,18,F,4705 +1977,11,18,M,4843 +1977,11,19,F,3900 +1977,11,19,M,4272 +1977,11,20,F,3814 +1977,11,20,M,3872 +1977,11,21,F,4621 +1977,11,21,M,4949 +1977,11,22,F,4633 +1977,11,22,M,4943 +1977,11,23,F,4435 +1977,11,23,M,4942 +1977,11,24,F,3789 +1977,11,24,M,3919 +1977,11,25,F,4216 +1977,11,25,M,4556 +1977,11,26,F,3854 +1977,11,26,M,4155 +1977,11,27,F,3754 +1977,11,27,M,3973 +1977,11,28,F,4609 +1977,11,28,M,4881 +1977,11,29,F,4614 +1977,11,29,M,5005 +1977,11,30,F,4611 +1977,11,30,M,4760 +1977,11,31,F,2 +1977,11,31,M,4 +1977,11,99,F,4 +1977,11,99,M,6 +1977,12,1,F,4490 +1977,12,1,M,4720 +1977,12,2,F,4541 +1977,12,2,M,4705 +1977,12,3,F,3832 +1977,12,3,M,4110 +1977,12,4,F,3728 +1977,12,4,M,3881 +1977,12,5,F,4591 +1977,12,5,M,4767 +1977,12,6,F,4539 +1977,12,6,M,4966 +1977,12,7,F,4487 +1977,12,7,M,4588 +1977,12,8,F,4509 +1977,12,8,M,4752 +1977,12,9,F,4495 +1977,12,9,M,4735 +1977,12,10,F,3917 +1977,12,10,M,4047 +1977,12,11,F,3677 +1977,12,11,M,3826 +1977,12,12,F,4550 +1977,12,12,M,4714 +1977,12,13,F,4684 +1977,12,13,M,4849 +1977,12,14,F,4484 +1977,12,14,M,4740 +1977,12,15,F,4596 +1977,12,15,M,4834 +1977,12,16,F,4657 +1977,12,16,M,4929 +1977,12,17,F,4045 +1977,12,17,M,4128 +1977,12,18,F,3707 +1977,12,18,M,3876 +1977,12,19,F,4757 +1977,12,19,M,5151 +1977,12,20,F,4733 +1977,12,20,M,5166 +1977,12,21,F,4530 +1977,12,21,M,4737 +1977,12,22,F,4223 +1977,12,22,M,4296 +1977,12,23,F,3950 +1977,12,23,M,4099 +1977,12,24,F,3592 +1977,12,24,M,3762 +1977,12,25,F,3731 +1977,12,25,M,3673 +1977,12,26,F,3690 +1977,12,26,M,3822 +1977,12,27,F,4358 +1977,12,27,M,4831 +1977,12,28,F,4708 +1977,12,28,M,5025 +1977,12,29,F,4792 +1977,12,29,M,4942 +1977,12,30,F,4701 +1977,12,30,M,5105 +1977,12,31,F,3991 +1977,12,31,M,3991 +1977,12,99,F,4 +1977,12,99,M,4 +1978,1,1,F,3773 +1978,1,1,M,3943 +1978,1,2,F,3599 +1978,1,2,M,3944 +1978,1,3,F,4309 +1978,1,3,M,4524 +1978,1,4,F,4352 +1978,1,4,M,4518 +1978,1,5,F,4397 +1978,1,5,M,4656 +1978,1,6,F,4512 +1978,1,6,M,4712 +1978,1,7,F,3959 +1978,1,7,M,4132 +1978,1,8,F,3782 +1978,1,8,M,3840 +1978,1,9,F,4467 +1978,1,9,M,4720 +1978,1,10,F,4501 +1978,1,10,M,4594 +1978,1,11,F,4477 +1978,1,11,M,4743 +1978,1,12,F,4514 +1978,1,12,M,4762 +1978,1,13,F,4510 +1978,1,13,M,4644 +1978,1,14,F,4066 +1978,1,14,M,4248 +1978,1,15,F,3870 +1978,1,15,M,3913 +1978,1,16,F,4701 +1978,1,16,M,4771 +1978,1,17,F,4610 +1978,1,17,M,4737 +1978,1,18,F,4518 +1978,1,18,M,4616 +1978,1,19,F,4538 +1978,1,19,M,4702 +1978,1,20,F,4562 +1978,1,20,M,4754 +1978,1,21,F,3899 +1978,1,21,M,4064 +1978,1,22,F,3716 +1978,1,22,M,3857 +1978,1,23,F,4577 +1978,1,23,M,4686 +1978,1,24,F,4680 +1978,1,24,M,4746 +1978,1,25,F,4394 +1978,1,25,M,4709 +1978,1,26,F,4655 +1978,1,26,M,4742 +1978,1,27,F,4357 +1978,1,27,M,4635 +1978,1,28,F,3938 +1978,1,28,M,4021 +1978,1,29,F,3685 +1978,1,29,M,3852 +1978,1,30,F,4457 +1978,1,30,M,4737 +1978,1,31,F,4457 +1978,1,31,M,4708 +1978,2,1,F,4383 +1978,2,1,M,4788 +1978,2,2,F,4571 +1978,2,2,M,4666 +1978,2,3,F,4454 +1978,2,3,M,4730 +1978,2,4,F,3947 +1978,2,4,M,4132 +1978,2,5,F,3850 +1978,2,5,M,3970 +1978,2,6,F,4521 +1978,2,6,M,4715 +1978,2,7,F,4480 +1978,2,7,M,4868 +1978,2,8,F,4491 +1978,2,8,M,4663 +1978,2,9,F,4494 +1978,2,9,M,4768 +1978,2,10,F,4645 +1978,2,10,M,4889 +1978,2,11,F,3935 +1978,2,11,M,4220 +1978,2,12,F,3821 +1978,2,12,M,4144 +1978,2,13,F,4381 +1978,2,13,M,4594 +1978,2,14,F,4874 +1978,2,14,M,4990 +1978,2,15,F,4513 +1978,2,15,M,4783 +1978,2,16,F,4458 +1978,2,16,M,4657 +1978,2,17,F,4515 +1978,2,17,M,4736 +1978,2,18,F,3945 +1978,2,18,M,4238 +1978,2,19,F,3646 +1978,2,19,M,4062 +1978,2,20,F,4419 +1978,2,20,M,4617 +1978,2,21,F,4570 +1978,2,21,M,4696 +1978,2,22,F,4606 +1978,2,22,M,4747 +1978,2,23,F,4515 +1978,2,23,M,4768 +1978,2,24,F,4708 +1978,2,24,M,4858 +1978,2,25,F,4051 +1978,2,25,M,4280 +1978,2,26,F,3880 +1978,2,26,M,4015 +1978,2,27,F,4489 +1978,2,27,M,4783 +1978,2,28,F,4660 +1978,2,28,M,5057 +1978,2,29,F,2 +1978,2,29,M,8 +1978,2,30,F,2 +1978,2,30,M,2 +1978,2,31,F,3 +1978,2,31,M,2 +1978,2,99,F,4 +1978,3,1,F,4471 +1978,3,1,M,4673 +1978,3,2,F,4537 +1978,3,2,M,4783 +1978,3,3,F,4684 +1978,3,3,M,4761 +1978,3,4,F,3966 +1978,3,4,M,4064 +1978,3,5,F,3857 +1978,3,5,M,3954 +1978,3,6,F,4455 +1978,3,6,M,4847 +1978,3,7,F,4660 +1978,3,7,M,4925 +1978,3,8,F,4517 +1978,3,8,M,4704 +1978,3,9,F,4525 +1978,3,9,M,4706 +1978,3,10,F,4635 +1978,3,10,M,4962 +1978,3,11,F,3970 +1978,3,11,M,4187 +1978,3,12,F,3831 +1978,3,12,M,4053 +1978,3,13,F,4333 +1978,3,13,M,4703 +1978,3,14,F,4699 +1978,3,14,M,4838 +1978,3,15,F,4528 +1978,3,15,M,4771 +1978,3,16,F,4528 +1978,3,16,M,4809 +1978,3,17,F,4600 +1978,3,17,M,4888 +1978,3,18,F,3881 +1978,3,18,M,4091 +1978,3,19,F,3803 +1978,3,19,M,3938 +1978,3,20,F,4372 +1978,3,20,M,4773 +1978,3,21,F,4676 +1978,3,21,M,5003 +1978,3,22,F,4540 +1978,3,22,M,4781 +1978,3,23,F,4462 +1978,3,23,M,4707 +1978,3,24,F,4443 +1978,3,24,M,4721 +1978,3,25,F,3788 +1978,3,25,M,4099 +1978,3,26,F,3729 +1978,3,26,M,3866 +1978,3,27,F,4542 +1978,3,27,M,4571 +1978,3,28,F,4516 +1978,3,28,M,4787 +1978,3,29,F,4505 +1978,3,29,M,4701 +1978,3,30,F,4428 +1978,3,30,M,4489 +1978,3,31,F,4663 +1978,3,31,M,4667 +1978,4,1,F,3990 +1978,4,1,M,4091 +1978,4,2,F,3806 +1978,4,2,M,3893 +1978,4,3,F,4426 +1978,4,3,M,4701 +1978,4,4,F,4520 +1978,4,4,M,4930 +1978,4,5,F,4288 +1978,4,5,M,4572 +1978,4,6,F,4285 +1978,4,6,M,4696 +1978,4,7,F,4385 +1978,4,7,M,4702 +1978,4,8,F,3831 +1978,4,8,M,4072 +1978,4,9,F,3696 +1978,4,9,M,3767 +1978,4,10,F,4313 +1978,4,10,M,4568 +1978,4,11,F,4419 +1978,4,11,M,4615 +1978,4,12,F,4221 +1978,4,12,M,4398 +1978,4,13,F,4263 +1978,4,13,M,4471 +1978,4,14,F,4536 +1978,4,14,M,4492 +1978,4,15,F,3631 +1978,4,15,M,3902 +1978,4,16,F,3526 +1978,4,16,M,3675 +1978,4,17,F,4200 +1978,4,17,M,4513 +1978,4,18,F,4512 +1978,4,18,M,4703 +1978,4,19,F,4198 +1978,4,19,M,4530 +1978,4,20,F,4114 +1978,4,20,M,4480 +1978,4,21,F,4339 +1978,4,21,M,4563 +1978,4,22,F,3700 +1978,4,22,M,4097 +1978,4,23,F,3433 +1978,4,23,M,3882 +1978,4,24,F,4400 +1978,4,24,M,4631 +1978,4,25,F,4466 +1978,4,25,M,4626 +1978,4,26,F,4416 +1978,4,26,M,4611 +1978,4,27,F,4280 +1978,4,27,M,4579 +1978,4,28,F,4504 +1978,4,28,M,4551 +1978,4,29,F,3747 +1978,4,29,M,4017 +1978,4,30,F,3479 +1978,4,30,M,3673 +1978,4,31,F,2 +1978,4,31,M,2 +1978,4,99,F,2 +1978,4,99,M,2 +1978,5,1,F,4291 +1978,5,1,M,4616 +1978,5,2,F,4561 +1978,5,2,M,4865 +1978,5,3,F,4410 +1978,5,3,M,4653 +1978,5,4,F,4102 +1978,5,4,M,4578 +1978,5,5,F,4445 +1978,5,5,M,4661 +1978,5,6,F,3747 +1978,5,6,M,3983 +1978,5,7,F,3639 +1978,5,7,M,3759 +1978,5,8,F,4389 +1978,5,8,M,4607 +1978,5,9,F,4584 +1978,5,9,M,4733 +1978,5,10,F,4645 +1978,5,10,M,4643 +1978,5,11,F,4267 +1978,5,11,M,4647 +1978,5,12,F,4352 +1978,5,12,M,4629 +1978,5,13,F,3817 +1978,5,13,M,3950 +1978,5,14,F,3630 +1978,5,14,M,3760 +1978,5,15,F,4426 +1978,5,15,M,4786 +1978,5,16,F,4441 +1978,5,16,M,4771 +1978,5,17,F,4340 +1978,5,17,M,4587 +1978,5,18,F,4318 +1978,5,18,M,4742 +1978,5,19,F,4379 +1978,5,19,M,4639 +1978,5,20,F,3881 +1978,5,20,M,4197 +1978,5,21,F,3691 +1978,5,21,M,3889 +1978,5,22,F,4279 +1978,5,22,M,4823 +1978,5,23,F,4518 +1978,5,23,M,4703 +1978,5,24,F,4477 +1978,5,24,M,4731 +1978,5,25,F,4456 +1978,5,25,M,4737 +1978,5,26,F,4547 +1978,5,26,M,4985 +1978,5,27,F,3902 +1978,5,27,M,4119 +1978,5,28,F,3807 +1978,5,28,M,3990 +1978,5,29,F,3775 +1978,5,29,M,4018 +1978,5,30,F,4554 +1978,5,30,M,5083 +1978,5,31,F,4585 +1978,5,31,M,5028 +1978,5,99,F,4 +1978,5,99,M,2 +1978,6,1,F,4612 +1978,6,1,M,4838 +1978,6,2,F,4386 +1978,6,2,M,4927 +1978,6,3,F,3836 +1978,6,3,M,4146 +1978,6,4,F,3617 +1978,6,4,M,3791 +1978,6,5,F,4459 +1978,6,5,M,4677 +1978,6,6,F,4655 +1978,6,6,M,4958 +1978,6,7,F,4520 +1978,6,7,M,4828 +1978,6,8,F,4510 +1978,6,8,M,4580 +1978,6,9,F,4527 +1978,6,9,M,4847 +1978,6,10,F,3930 +1978,6,10,M,4118 +1978,6,11,F,3628 +1978,6,11,M,3956 +1978,6,12,F,4437 +1978,6,12,M,4771 +1978,6,13,F,4631 +1978,6,13,M,4638 +1978,6,14,F,4315 +1978,6,14,M,4919 +1978,6,15,F,4552 +1978,6,15,M,4631 +1978,6,16,F,4594 +1978,6,16,M,4768 +1978,6,17,F,4056 +1978,6,17,M,4188 +1978,6,18,F,3710 +1978,6,18,M,4084 +1978,6,19,F,4560 +1978,6,19,M,4993 +1978,6,20,F,4697 +1978,6,20,M,4986 +1978,6,21,F,4555 +1978,6,21,M,4723 +1978,6,22,F,4558 +1978,6,22,M,4853 +1978,6,23,F,4657 +1978,6,23,M,4944 +1978,6,24,F,3905 +1978,6,24,M,4227 +1978,6,25,F,3909 +1978,6,25,M,4193 +1978,6,26,F,4514 +1978,6,26,M,4839 +1978,6,27,F,4822 +1978,6,27,M,5036 +1978,6,28,F,4670 +1978,6,28,M,5039 +1978,6,29,F,4637 +1978,6,29,M,5004 +1978,6,30,F,4927 +1978,6,30,M,5171 +1978,6,31,M,3 +1978,6,99,F,4 +1978,6,99,M,4 +1978,7,1,F,3954 +1978,7,1,M,4264 +1978,7,2,F,3851 +1978,7,2,M,4140 +1978,7,3,F,4480 +1978,7,3,M,4814 +1978,7,4,F,4023 +1978,7,4,M,4425 +1978,7,5,F,4782 +1978,7,5,M,4907 +1978,7,6,F,4900 +1978,7,6,M,5304 +1978,7,7,F,4989 +1978,7,7,M,5266 +1978,7,8,F,4256 +1978,7,8,M,4535 +1978,7,9,F,3933 +1978,7,9,M,4179 +1978,7,10,F,4727 +1978,7,10,M,5160 +1978,7,11,F,4794 +1978,7,11,M,5074 +1978,7,12,F,4816 +1978,7,12,M,4900 +1978,7,13,F,4773 +1978,7,13,M,5222 +1978,7,14,F,5060 +1978,7,14,M,5389 +1978,7,15,F,4280 +1978,7,15,M,4590 +1978,7,16,F,4139 +1978,7,16,M,4287 +1978,7,17,F,4821 +1978,7,17,M,5216 +1978,7,18,F,4995 +1978,7,18,M,5381 +1978,7,19,F,4867 +1978,7,19,M,5158 +1978,7,20,F,5049 +1978,7,20,M,5352 +1978,7,21,F,4931 +1978,7,21,M,5411 +1978,7,22,F,4419 +1978,7,22,M,4663 +1978,7,23,F,4133 +1978,7,23,M,4444 +1978,7,24,F,4898 +1978,7,24,M,5079 +1978,7,25,F,5009 +1978,7,25,M,5352 +1978,7,26,F,4989 +1978,7,26,M,5122 +1978,7,27,F,5008 +1978,7,27,M,5198 +1978,7,28,F,5093 +1978,7,28,M,5231 +1978,7,29,F,4256 +1978,7,29,M,4439 +1978,7,30,F,4104 +1978,7,30,M,4390 +1978,7,31,F,4851 +1978,7,31,M,5051 +1978,7,99,F,3 +1978,8,1,F,4909 +1978,8,1,M,5255 +1978,8,2,F,4753 +1978,8,2,M,5085 +1978,8,3,F,4971 +1978,8,3,M,5173 +1978,8,4,F,4922 +1978,8,4,M,5141 +1978,8,5,F,4297 +1978,8,5,M,4460 +1978,8,6,F,4074 +1978,8,6,M,4382 +1978,8,7,F,4929 +1978,8,7,M,5290 +1978,8,8,F,5040 +1978,8,8,M,5420 +1978,8,9,F,4993 +1978,8,9,M,5170 +1978,8,10,F,5148 +1978,8,10,M,5159 +1978,8,11,F,4936 +1978,8,11,M,5248 +1978,8,12,F,4317 +1978,8,12,M,4649 +1978,8,13,F,4175 +1978,8,13,M,4372 +1978,8,14,F,4912 +1978,8,14,M,5233 +1978,8,15,F,5021 +1978,8,15,M,5499 +1978,8,16,F,4901 +1978,8,16,M,5171 +1978,8,17,F,5132 +1978,8,17,M,5268 +1978,8,18,F,5020 +1978,8,18,M,5357 +1978,8,19,F,4260 +1978,8,19,M,4667 +1978,8,20,F,4155 +1978,8,20,M,4338 +1978,8,21,F,4801 +1978,8,21,M,5186 +1978,8,22,F,4952 +1978,8,22,M,5289 +1978,8,23,F,4833 +1978,8,23,M,5081 +1978,8,24,F,4957 +1978,8,24,M,5211 +1978,8,25,F,5074 +1978,8,25,M,5112 +1978,8,26,F,4271 +1978,8,26,M,4531 +1978,8,27,F,4134 +1978,8,27,M,4337 +1978,8,28,F,4857 +1978,8,28,M,5159 +1978,8,29,F,4979 +1978,8,29,M,5421 +1978,8,30,F,4948 +1978,8,30,M,5133 +1978,8,31,F,4849 +1978,8,31,M,5017 +1978,8,99,F,2 +1978,8,99,M,8 +1978,9,1,F,4818 +1978,9,1,M,5315 +1978,9,2,F,4217 +1978,9,2,M,4374 +1978,9,3,F,4066 +1978,9,3,M,4300 +1978,9,4,F,4152 +1978,9,4,M,4340 +1978,9,5,F,4876 +1978,9,5,M,5168 +1978,9,6,F,5255 +1978,9,6,M,5465 +1978,9,7,F,4944 +1978,9,7,M,5365 +1978,9,8,F,4976 +1978,9,8,M,5408 +1978,9,9,F,4456 +1978,9,9,M,4579 +1978,9,10,F,4241 +1978,9,10,M,4409 +1978,9,11,F,5032 +1978,9,11,M,5133 +1978,9,12,F,5177 +1978,9,12,M,5262 +1978,9,13,F,4948 +1978,9,13,M,5222 +1978,9,14,F,5044 +1978,9,14,M,5235 +1978,9,15,F,4991 +1978,9,15,M,5292 +1978,9,16,F,4417 +1978,9,16,M,4770 +1978,9,17,F,4250 +1978,9,17,M,4475 +1978,9,18,F,4960 +1978,9,18,M,5364 +1978,9,19,F,5332 +1978,9,19,M,5396 +1978,9,20,F,5121 +1978,9,20,M,5383 +1978,9,21,F,5107 +1978,9,21,M,5411 +1978,9,22,F,5048 +1978,9,22,M,5322 +1978,9,23,F,4282 +1978,9,23,M,4469 +1978,9,24,F,4288 +1978,9,24,M,4373 +1978,9,25,F,5088 +1978,9,25,M,5346 +1978,9,26,F,5173 +1978,9,26,M,5345 +1978,9,27,F,5113 +1978,9,27,M,5246 +1978,9,28,F,4968 +1978,9,28,M,5230 +1978,9,29,F,5157 +1978,9,29,M,5229 +1978,9,30,F,4226 +1978,9,30,M,4437 +1978,9,31,F,2 +1978,9,31,M,3 +1978,9,99,F,2 +1978,9,99,M,5 +1978,10,1,F,4214 +1978,10,1,M,4487 +1978,10,2,F,4922 +1978,10,2,M,5027 +1978,10,3,F,5140 +1978,10,3,M,5248 +1978,10,4,F,4938 +1978,10,4,M,5007 +1978,10,5,F,4844 +1978,10,5,M,5120 +1978,10,6,F,4910 +1978,10,6,M,5156 +1978,10,7,F,4243 +1978,10,7,M,4380 +1978,10,8,F,4181 +1978,10,8,M,4210 +1978,10,9,F,4891 +1978,10,9,M,4893 +1978,10,10,F,5110 +1978,10,10,M,5251 +1978,10,11,F,4832 +1978,10,11,M,5061 +1978,10,12,F,4828 +1978,10,12,M,5006 +1978,10,13,F,4663 +1978,10,13,M,5114 +1978,10,14,F,4165 +1978,10,14,M,4401 +1978,10,15,F,3942 +1978,10,15,M,3948 +1978,10,16,F,4638 +1978,10,16,M,4909 +1978,10,17,F,4988 +1978,10,17,M,4968 +1978,10,18,F,4655 +1978,10,18,M,4754 +1978,10,19,F,4653 +1978,10,19,M,4861 +1978,10,20,F,4808 +1978,10,20,M,4836 +1978,10,21,F,4134 +1978,10,21,M,4289 +1978,10,22,F,3960 +1978,10,22,M,3989 +1978,10,23,F,4628 +1978,10,23,M,4808 +1978,10,24,F,4703 +1978,10,24,M,4885 +1978,10,25,F,4594 +1978,10,25,M,4744 +1978,10,26,F,4648 +1978,10,26,M,4867 +1978,10,27,F,4682 +1978,10,27,M,4869 +1978,10,28,F,4154 +1978,10,28,M,4271 +1978,10,29,F,3877 +1978,10,29,M,4291 +1978,10,30,F,4586 +1978,10,30,M,4886 +1978,10,31,F,4503 +1978,10,31,M,4846 +1978,10,99,F,2 +1978,10,99,M,8 +1978,11,1,F,4486 +1978,11,1,M,4854 +1978,11,2,F,4528 +1978,11,2,M,4733 +1978,11,3,F,4729 +1978,11,3,M,5058 +1978,11,4,F,4118 +1978,11,4,M,4145 +1978,11,5,F,3774 +1978,11,5,M,4253 +1978,11,6,F,4596 +1978,11,6,M,4930 +1978,11,7,F,4790 +1978,11,7,M,4999 +1978,11,8,F,4670 +1978,11,8,M,4854 +1978,11,9,F,4687 +1978,11,9,M,4935 +1978,11,10,F,4689 +1978,11,10,M,4984 +1978,11,11,F,4083 +1978,11,11,M,4284 +1978,11,12,F,3905 +1978,11,12,M,4081 +1978,11,13,F,4676 +1978,11,13,M,4953 +1978,11,14,F,4866 +1978,11,14,M,5165 +1978,11,15,F,4674 +1978,11,15,M,4877 +1978,11,16,F,4731 +1978,11,16,M,4847 +1978,11,17,F,4726 +1978,11,17,M,5130 +1978,11,18,F,4028 +1978,11,18,M,4417 +1978,11,19,F,3832 +1978,11,19,M,4045 +1978,11,20,F,4605 +1978,11,20,M,4998 +1978,11,21,F,4847 +1978,11,21,M,5114 +1978,11,22,F,4615 +1978,11,22,M,4951 +1978,11,23,F,3860 +1978,11,23,M,4066 +1978,11,24,F,4363 +1978,11,24,M,4690 +1978,11,25,F,4045 +1978,11,25,M,4245 +1978,11,26,F,3976 +1978,11,26,M,4105 +1978,11,27,F,4845 +1978,11,27,M,4990 +1978,11,28,F,4866 +1978,11,28,M,4960 +1978,11,29,F,4575 +1978,11,29,M,4877 +1978,11,30,F,4521 +1978,11,30,M,4889 +1978,11,31,F,2 +1978,11,31,M,3 +1978,11,99,F,2 +1978,11,99,M,1 +1978,12,1,F,4779 +1978,12,1,M,4835 +1978,12,2,F,4247 +1978,12,2,M,4297 +1978,12,3,F,4087 +1978,12,3,M,4124 +1978,12,4,F,4836 +1978,12,4,M,4943 +1978,12,5,F,4884 +1978,12,5,M,5011 +1978,12,6,F,4622 +1978,12,6,M,4797 +1978,12,7,F,4660 +1978,12,7,M,4837 +1978,12,8,F,4488 +1978,12,8,M,4929 +1978,12,9,F,4084 +1978,12,9,M,4263 +1978,12,10,F,3894 +1978,12,10,M,4210 +1978,12,11,F,4786 +1978,12,11,M,4911 +1978,12,12,F,4947 +1978,12,12,M,5125 +1978,12,13,F,4668 +1978,12,13,M,4864 +1978,12,14,F,4707 +1978,12,14,M,4832 +1978,12,15,F,4763 +1978,12,15,M,5200 +1978,12,16,F,4163 +1978,12,16,M,4359 +1978,12,17,F,4039 +1978,12,17,M,4147 +1978,12,18,F,5142 +1978,12,18,M,5071 +1978,12,19,F,5181 +1978,12,19,M,5436 +1978,12,20,F,4835 +1978,12,20,M,5170 +1978,12,21,F,4615 +1978,12,21,M,4803 +1978,12,22,F,4465 +1978,12,22,M,4563 +1978,12,23,F,3883 +1978,12,23,M,4069 +1978,12,24,F,3858 +1978,12,24,M,4116 +1978,12,25,F,3846 +1978,12,25,M,4014 +1978,12,26,F,4287 +1978,12,26,M,4624 +1978,12,27,F,4904 +1978,12,27,M,5020 +1978,12,28,F,4979 +1978,12,28,M,5211 +1978,12,29,F,5097 +1978,12,29,M,5316 +1978,12,30,F,4168 +1978,12,30,M,4319 +1978,12,31,F,3836 +1978,12,31,M,4202 +1978,12,99,F,10 +1978,12,99,M,2 +1979,1,1,F,4016 +1979,1,1,M,4205 +1979,1,2,F,4245 +1979,1,2,M,4610 +1979,1,3,F,4522 +1979,1,3,M,4829 +1979,1,4,F,4612 +1979,1,4,M,4817 +1979,1,5,F,4689 +1979,1,5,M,4897 +1979,1,6,F,4117 +1979,1,6,M,4453 +1979,1,7,F,3861 +1979,1,7,M,4152 +1979,1,8,F,4704 +1979,1,8,M,4820 +1979,1,9,F,4535 +1979,1,9,M,4775 +1979,1,10,F,4548 +1979,1,10,M,4868 +1979,1,11,F,4590 +1979,1,11,M,4819 +1979,1,12,F,4757 +1979,1,12,M,4913 +1979,1,13,F,4212 +1979,1,13,M,4437 +1979,1,14,F,4039 +1979,1,14,M,4134 +1979,1,15,F,4626 +1979,1,15,M,4928 +1979,1,16,F,4697 +1979,1,16,M,5108 +1979,1,17,F,4655 +1979,1,17,M,4858 +1979,1,18,F,4664 +1979,1,18,M,4831 +1979,1,19,F,4765 +1979,1,19,M,5110 +1979,1,20,F,4082 +1979,1,20,M,4396 +1979,1,21,F,3888 +1979,1,21,M,4131 +1979,1,22,F,4732 +1979,1,22,M,4973 +1979,1,23,F,4741 +1979,1,23,M,5053 +1979,1,24,F,4657 +1979,1,24,M,4899 +1979,1,25,F,4680 +1979,1,25,M,4976 +1979,1,26,F,4758 +1979,1,26,M,5051 +1979,1,27,F,4041 +1979,1,27,M,4331 +1979,1,28,F,4034 +1979,1,28,M,4201 +1979,1,29,F,4768 +1979,1,29,M,4964 +1979,1,30,F,4545 +1979,1,30,M,4975 +1979,1,31,F,4767 +1979,1,31,M,4809 +1979,2,1,F,4487 +1979,2,1,M,4848 +1979,2,2,F,4810 +1979,2,2,M,5085 +1979,2,3,F,4116 +1979,2,3,M,4472 +1979,2,4,F,3967 +1979,2,4,M,4226 +1979,2,5,F,4733 +1979,2,5,M,4829 +1979,2,6,F,4801 +1979,2,6,M,5034 +1979,2,7,F,4682 +1979,2,7,M,4960 +1979,2,8,F,4604 +1979,2,8,M,4973 +1979,2,9,F,4740 +1979,2,9,M,4935 +1979,2,10,F,4160 +1979,2,10,M,4416 +1979,2,11,F,4074 +1979,2,11,M,4120 +1979,2,12,F,4730 +1979,2,12,M,4933 +1979,2,13,F,4725 +1979,2,13,M,4938 +1979,2,14,F,4872 +1979,2,14,M,5166 +1979,2,15,F,4709 +1979,2,15,M,5016 +1979,2,16,F,4782 +1979,2,16,M,5041 +1979,2,17,F,4172 +1979,2,17,M,4244 +1979,2,18,F,4043 +1979,2,18,M,4152 +1979,2,19,F,4525 +1979,2,19,M,4754 +1979,2,20,F,4962 +1979,2,20,M,5090 +1979,2,21,F,4764 +1979,2,21,M,5012 +1979,2,22,F,4701 +1979,2,22,M,4996 +1979,2,23,F,4891 +1979,2,23,M,5209 +1979,2,24,F,4153 +1979,2,24,M,4472 +1979,2,25,F,4050 +1979,2,25,M,4209 +1979,2,26,F,4627 +1979,2,26,M,4940 +1979,2,27,F,4849 +1979,2,27,M,4902 +1979,2,28,F,4740 +1979,2,28,M,4922 +1979,2,99,F,5 +1979,2,99,M,1 +1979,3,1,F,4776 +1979,3,1,M,5038 +1979,3,2,F,4839 +1979,3,2,M,4914 +1979,3,3,F,4217 +1979,3,3,M,4514 +1979,3,4,F,3967 +1979,3,4,M,4261 +1979,3,5,F,4737 +1979,3,5,M,4960 +1979,3,6,F,4640 +1979,3,6,M,5027 +1979,3,7,F,4657 +1979,3,7,M,4946 +1979,3,8,F,4704 +1979,3,8,M,5075 +1979,3,9,F,4758 +1979,3,9,M,5059 +1979,3,10,F,4113 +1979,3,10,M,4418 +1979,3,11,F,3880 +1979,3,11,M,4050 +1979,3,12,F,4769 +1979,3,12,M,4855 +1979,3,13,F,4668 +1979,3,13,M,4901 +1979,3,14,F,4685 +1979,3,14,M,4944 +1979,3,15,F,4599 +1979,3,15,M,4951 +1979,3,16,F,4695 +1979,3,16,M,4981 +1979,3,17,F,4195 +1979,3,17,M,4338 +1979,3,18,F,3885 +1979,3,18,M,4306 +1979,3,19,F,4729 +1979,3,19,M,4972 +1979,3,20,F,4864 +1979,3,20,M,5246 +1979,3,21,F,4700 +1979,3,21,M,5004 +1979,3,22,F,4563 +1979,3,22,M,5034 +1979,3,23,F,4719 +1979,3,23,M,5060 +1979,3,24,F,4179 +1979,3,24,M,4384 +1979,3,25,F,4020 +1979,3,25,M,4036 +1979,3,26,F,4553 +1979,3,26,M,4961 +1979,3,27,F,4761 +1979,3,27,M,5176 +1979,3,28,F,4790 +1979,3,28,M,5035 +1979,3,29,F,4646 +1979,3,29,M,4976 +1979,3,30,F,4844 +1979,3,30,M,5012 +1979,3,31,F,4212 +1979,3,31,M,4260 +1979,3,99,F,2 +1979,3,99,M,2 +1979,4,1,F,4049 +1979,4,1,M,4077 +1979,4,2,F,4509 +1979,4,2,M,4897 +1979,4,3,F,4589 +1979,4,3,M,5003 +1979,4,4,F,4691 +1979,4,4,M,4836 +1979,4,5,F,4697 +1979,4,5,M,4820 +1979,4,6,F,4628 +1979,4,6,M,4977 +1979,4,7,F,3979 +1979,4,7,M,4151 +1979,4,8,F,3792 +1979,4,8,M,4049 +1979,4,9,F,4743 +1979,4,9,M,4904 +1979,4,10,F,4765 +1979,4,10,M,4924 +1979,4,11,F,4609 +1979,4,11,M,4891 +1979,4,12,F,4757 +1979,4,12,M,4835 +1979,4,13,F,4310 +1979,4,13,M,4760 +1979,4,14,F,4089 +1979,4,14,M,4118 +1979,4,15,F,3697 +1979,4,15,M,3918 +1979,4,16,F,4643 +1979,4,16,M,4706 +1979,4,17,F,4750 +1979,4,17,M,5027 +1979,4,18,F,4592 +1979,4,18,M,4903 +1979,4,19,F,4469 +1979,4,19,M,4779 +1979,4,20,F,4806 +1979,4,20,M,4823 +1979,4,21,F,3974 +1979,4,21,M,4223 +1979,4,22,F,3823 +1979,4,22,M,4098 +1979,4,23,F,4580 +1979,4,23,M,4954 +1979,4,24,F,4711 +1979,4,24,M,5131 +1979,4,25,F,4801 +1979,4,25,M,4834 +1979,4,26,F,4522 +1979,4,26,M,4813 +1979,4,27,F,4589 +1979,4,27,M,4975 +1979,4,28,F,3761 +1979,4,28,M,4192 +1979,4,29,F,3555 +1979,4,29,M,3942 +1979,4,30,F,4532 +1979,4,30,M,4986 +1979,4,99,M,1 +1979,5,1,F,4899 +1979,5,1,M,5197 +1979,5,2,F,4746 +1979,5,2,M,4872 +1979,5,3,F,4673 +1979,5,3,M,4882 +1979,5,4,F,4629 +1979,5,4,M,4954 +1979,5,5,F,3933 +1979,5,5,M,4231 +1979,5,6,F,3850 +1979,5,6,M,4059 +1979,5,7,F,4683 +1979,5,7,M,5069 +1979,5,8,F,4943 +1979,5,8,M,5064 +1979,5,9,F,4696 +1979,5,9,M,5026 +1979,5,10,F,4798 +1979,5,10,M,4980 +1979,5,11,F,4799 +1979,5,11,M,5055 +1979,5,12,F,4080 +1979,5,12,M,4194 +1979,5,13,F,3869 +1979,5,13,M,4200 +1979,5,14,F,4566 +1979,5,14,M,4916 +1979,5,15,F,4805 +1979,5,15,M,4974 +1979,5,16,F,4632 +1979,5,16,M,4907 +1979,5,17,F,4613 +1979,5,17,M,4788 +1979,5,18,F,4655 +1979,5,18,M,4883 +1979,5,19,F,4082 +1979,5,19,M,4268 +1979,5,20,F,3981 +1979,5,20,M,4100 +1979,5,21,F,4727 +1979,5,21,M,5010 +1979,5,22,F,4674 +1979,5,22,M,5098 +1979,5,23,F,4693 +1979,5,23,M,5088 +1979,5,24,F,4716 +1979,5,24,M,5029 +1979,5,25,F,4816 +1979,5,25,M,5042 +1979,5,26,F,4063 +1979,5,26,M,4301 +1979,5,27,F,3899 +1979,5,27,M,4046 +1979,5,28,F,4113 +1979,5,28,M,4281 +1979,5,29,F,4829 +1979,5,29,M,5006 +1979,5,30,F,4848 +1979,5,30,M,5006 +1979,5,31,F,4720 +1979,5,31,M,5003 +1979,5,99,M,2 +1979,6,1,F,4821 +1979,6,1,M,5066 +1979,6,2,F,4196 +1979,6,2,M,4353 +1979,6,3,F,3935 +1979,6,3,M,4255 +1979,6,4,F,4771 +1979,6,4,M,5000 +1979,6,5,F,4795 +1979,6,5,M,5056 +1979,6,6,F,4723 +1979,6,6,M,5118 +1979,6,7,F,4846 +1979,6,7,M,4876 +1979,6,8,F,4598 +1979,6,8,M,4991 +1979,6,9,F,4037 +1979,6,9,M,4294 +1979,6,10,F,3975 +1979,6,10,M,4334 +1979,6,11,F,4643 +1979,6,11,M,4960 +1979,6,12,F,4782 +1979,6,12,M,5038 +1979,6,13,F,4642 +1979,6,13,M,4904 +1979,6,14,F,4708 +1979,6,14,M,5090 +1979,6,15,F,4800 +1979,6,15,M,5015 +1979,6,16,F,4233 +1979,6,16,M,4428 +1979,6,17,F,4000 +1979,6,17,M,4175 +1979,6,18,F,4668 +1979,6,18,M,5064 +1979,6,19,F,4907 +1979,6,19,M,5107 +1979,6,20,F,4972 +1979,6,20,M,5119 +1979,6,21,F,4753 +1979,6,21,M,5015 +1979,6,22,F,4837 +1979,6,22,M,5170 +1979,6,23,F,4065 +1979,6,23,M,4420 +1979,6,24,F,3937 +1979,6,24,M,4195 +1979,6,25,F,4649 +1979,6,25,M,4923 +1979,6,26,F,4974 +1979,6,26,M,5142 +1979,6,27,F,4913 +1979,6,27,M,5168 +1979,6,28,F,4942 +1979,6,28,M,5144 +1979,6,29,F,4993 +1979,6,29,M,5260 +1979,6,30,F,4295 +1979,6,30,M,4628 +1979,6,99,M,2 +1979,7,1,F,4218 +1979,7,1,M,4345 +1979,7,2,F,4929 +1979,7,2,M,5146 +1979,7,3,F,5010 +1979,7,3,M,5506 +1979,7,4,F,4256 +1979,7,4,M,4452 +1979,7,5,F,4781 +1979,7,5,M,5165 +1979,7,6,F,4996 +1979,7,6,M,5357 +1979,7,7,F,4309 +1979,7,7,M,4708 +1979,7,8,F,4243 +1979,7,8,M,4381 +1979,7,9,F,5117 +1979,7,9,M,5438 +1979,7,10,F,5229 +1979,7,10,M,5564 +1979,7,11,F,5104 +1979,7,11,M,5264 +1979,7,12,F,5150 +1979,7,12,M,5579 +1979,7,13,F,5212 +1979,7,13,M,5498 +1979,7,14,F,4514 +1979,7,14,M,4830 +1979,7,15,F,4354 +1979,7,15,M,4658 +1979,7,16,F,5101 +1979,7,16,M,5380 +1979,7,17,F,5282 +1979,7,17,M,5545 +1979,7,18,F,5126 +1979,7,18,M,5405 +1979,7,19,F,5176 +1979,7,19,M,5280 +1979,7,20,F,5196 +1979,7,20,M,5472 +1979,7,21,F,4502 +1979,7,21,M,4646 +1979,7,22,F,4314 +1979,7,22,M,4559 +1979,7,23,F,5101 +1979,7,23,M,5504 +1979,7,24,F,5255 +1979,7,24,M,5596 +1979,7,25,F,5296 +1979,7,25,M,5441 +1979,7,26,F,5095 +1979,7,26,M,5568 +1979,7,27,F,5226 +1979,7,27,M,5574 +1979,7,28,F,4599 +1979,7,28,M,4819 +1979,7,29,F,4468 +1979,7,29,M,4426 +1979,7,30,F,5210 +1979,7,30,M,5324 +1979,7,31,F,5265 +1979,7,31,M,5577 +1979,7,99,F,2 +1979,8,1,F,5320 +1979,8,1,M,5556 +1979,8,2,F,5217 +1979,8,2,M,5475 +1979,8,3,F,5260 +1979,8,3,M,5537 +1979,8,4,F,4649 +1979,8,4,M,4778 +1979,8,5,F,4335 +1979,8,5,M,4552 +1979,8,6,F,5276 +1979,8,6,M,5377 +1979,8,7,F,5220 +1979,8,7,M,5633 +1979,8,8,F,5298 +1979,8,8,M,5532 +1979,8,9,F,5044 +1979,8,9,M,5526 +1979,8,10,F,5234 +1979,8,10,M,5600 +1979,8,11,F,4583 +1979,8,11,M,4703 +1979,8,12,F,4357 +1979,8,12,M,4364 +1979,8,13,F,5081 +1979,8,13,M,5015 +1979,8,14,F,5392 +1979,8,14,M,5542 +1979,8,15,F,5083 +1979,8,15,M,5407 +1979,8,16,F,5113 +1979,8,16,M,5273 +1979,8,17,F,5176 +1979,8,17,M,5222 +1979,8,18,F,4584 +1979,8,18,M,4657 +1979,8,19,F,4475 +1979,8,19,M,4721 +1979,8,20,F,5319 +1979,8,20,M,5341 +1979,8,21,F,5369 +1979,8,21,M,5541 +1979,8,22,F,5142 +1979,8,22,M,5423 +1979,8,23,F,5193 +1979,8,23,M,5507 +1979,8,24,F,5181 +1979,8,24,M,5390 +1979,8,25,F,4564 +1979,8,25,M,4761 +1979,8,26,F,4329 +1979,8,26,M,4595 +1979,8,27,F,5135 +1979,8,27,M,5442 +1979,8,28,F,5444 +1979,8,28,M,5605 +1979,8,29,F,5001 +1979,8,29,M,5533 +1979,8,30,F,5111 +1979,8,30,M,5535 +1979,8,31,F,5393 +1979,8,31,M,5480 +1979,8,99,F,2 +1979,8,99,M,2 +1979,9,1,F,4432 +1979,9,1,M,4692 +1979,9,2,F,4167 +1979,9,2,M,4571 +1979,9,3,F,4415 +1979,9,3,M,4576 +1979,9,4,F,5137 +1979,9,4,M,5357 +1979,9,5,F,5307 +1979,9,5,M,5719 +1979,9,6,F,5247 +1979,9,6,M,5549 +1979,9,7,F,5160 +1979,9,7,M,5581 +1979,9,8,F,4559 +1979,9,8,M,4601 +1979,9,9,F,4446 +1979,9,9,M,4524 +1979,9,10,F,5199 +1979,9,10,M,5378 +1979,9,11,F,5361 +1979,9,11,M,5720 +1979,9,12,F,5118 +1979,9,12,M,5480 +1979,9,13,F,5310 +1979,9,13,M,5375 +1979,9,14,F,5387 +1979,9,14,M,5607 +1979,9,15,F,4608 +1979,9,15,M,4760 +1979,9,16,F,4456 +1979,9,16,M,4769 +1979,9,17,F,5396 +1979,9,17,M,5408 +1979,9,18,F,5493 +1979,9,18,M,5692 +1979,9,19,F,5474 +1979,9,19,M,5569 +1979,9,20,F,5228 +1979,9,20,M,5471 +1979,9,21,F,5303 +1979,9,21,M,5608 +1979,9,22,F,4568 +1979,9,22,M,4815 +1979,9,23,F,4432 +1979,9,23,M,4709 +1979,9,24,F,5308 +1979,9,24,M,5646 +1979,9,25,F,5470 +1979,9,25,M,5591 +1979,9,26,F,5304 +1979,9,26,M,5503 +1979,9,27,F,5394 +1979,9,27,M,5619 +1979,9,28,F,5379 +1979,9,28,M,5536 +1979,9,29,F,4689 +1979,9,29,M,4853 +1979,9,30,F,4505 +1979,9,30,M,4607 +1979,9,99,F,14 +1979,9,99,M,11 +1979,10,1,F,5083 +1979,10,1,M,5392 +1979,10,2,F,5271 +1979,10,2,M,5640 +1979,10,3,F,5145 +1979,10,3,M,5452 +1979,10,4,F,5041 +1979,10,4,M,5273 +1979,10,5,F,5176 +1979,10,5,M,5424 +1979,10,6,F,4484 +1979,10,6,M,4654 +1979,10,7,F,4148 +1979,10,7,M,4470 +1979,10,8,F,4868 +1979,10,8,M,5175 +1979,10,9,F,4994 +1979,10,9,M,5356 +1979,10,10,F,4994 +1979,10,10,M,5205 +1979,10,11,F,4917 +1979,10,11,M,5189 +1979,10,12,F,5067 +1979,10,12,M,5354 +1979,10,13,F,4419 +1979,10,13,M,4545 +1979,10,14,F,4208 +1979,10,14,M,4274 +1979,10,15,F,5004 +1979,10,15,M,5160 +1979,10,16,F,5075 +1979,10,16,M,5181 +1979,10,17,F,4843 +1979,10,17,M,5164 +1979,10,18,F,4791 +1979,10,18,M,4983 +1979,10,19,F,4967 +1979,10,19,M,5266 +1979,10,20,F,4298 +1979,10,20,M,4393 +1979,10,21,F,4270 +1979,10,21,M,4384 +1979,10,22,F,4805 +1979,10,22,M,5441 +1979,10,23,F,4921 +1979,10,23,M,5276 +1979,10,24,F,4861 +1979,10,24,M,5123 +1979,10,25,F,4714 +1979,10,25,M,5192 +1979,10,26,F,4860 +1979,10,26,M,5127 +1979,10,27,F,4244 +1979,10,27,M,4329 +1979,10,28,F,4222 +1979,10,28,M,4376 +1979,10,29,F,4841 +1979,10,29,M,5079 +1979,10,30,F,5102 +1979,10,30,M,5400 +1979,10,31,F,4656 +1979,10,31,M,5028 +1979,10,99,M,2 +1979,11,1,F,4905 +1979,11,1,M,5014 +1979,11,2,F,4965 +1979,11,2,M,5209 +1979,11,3,F,4219 +1979,11,3,M,4411 +1979,11,4,F,3989 +1979,11,4,M,4263 +1979,11,5,F,4919 +1979,11,5,M,5137 +1979,11,6,F,5027 +1979,11,6,M,5249 +1979,11,7,F,4853 +1979,11,7,M,5113 +1979,11,8,F,4930 +1979,11,8,M,5178 +1979,11,9,F,5001 +1979,11,9,M,5101 +1979,11,10,F,4296 +1979,11,10,M,4503 +1979,11,11,F,4290 +1979,11,11,M,4470 +1979,11,12,F,4962 +1979,11,12,M,4932 +1979,11,13,F,5168 +1979,11,13,M,5283 +1979,11,14,F,4942 +1979,11,14,M,5208 +1979,11,15,F,4986 +1979,11,15,M,5195 +1979,11,16,F,5045 +1979,11,16,M,5227 +1979,11,17,F,4296 +1979,11,17,M,4400 +1979,11,18,F,4075 +1979,11,18,M,4324 +1979,11,19,F,5228 +1979,11,19,M,5127 +1979,11,20,F,5229 +1979,11,20,M,5536 +1979,11,21,F,4787 +1979,11,21,M,5256 +1979,11,22,F,3953 +1979,11,22,M,4211 +1979,11,23,F,4641 +1979,11,23,M,4839 +1979,11,24,F,4271 +1979,11,24,M,4503 +1979,11,25,F,4097 +1979,11,25,M,4245 +1979,11,26,F,4905 +1979,11,26,M,5104 +1979,11,27,F,4914 +1979,11,27,M,5360 +1979,11,28,F,4898 +1979,11,28,M,5090 +1979,11,29,F,4739 +1979,11,29,M,4981 +1979,11,30,F,4807 +1979,11,30,M,4951 +1979,11,99,F,2 +1979,11,99,M,4 +1979,12,1,F,4080 +1979,12,1,M,4263 +1979,12,2,F,4095 +1979,12,2,M,4335 +1979,12,3,F,4721 +1979,12,3,M,4921 +1979,12,4,F,5023 +1979,12,4,M,5259 +1979,12,5,F,4859 +1979,12,5,M,5073 +1979,12,6,F,4942 +1979,12,6,M,5079 +1979,12,7,F,4855 +1979,12,7,M,5014 +1979,12,8,F,4239 +1979,12,8,M,4470 +1979,12,9,F,3987 +1979,12,9,M,4226 +1979,12,10,F,4806 +1979,12,10,M,5126 +1979,12,11,F,5091 +1979,12,11,M,5217 +1979,12,12,F,4852 +1979,12,12,M,5198 +1979,12,13,F,4683 +1979,12,13,M,5017 +1979,12,14,F,4826 +1979,12,14,M,5118 +1979,12,15,F,4223 +1979,12,15,M,4250 +1979,12,16,F,4012 +1979,12,16,M,4197 +1979,12,17,F,5009 +1979,12,17,M,5264 +1979,12,18,F,5091 +1979,12,18,M,5501 +1979,12,19,F,4977 +1979,12,19,M,5280 +1979,12,20,F,4903 +1979,12,20,M,5119 +1979,12,21,F,4844 +1979,12,21,M,5119 +1979,12,22,F,4232 +1979,12,22,M,4304 +1979,12,23,F,3990 +1979,12,23,M,4114 +1979,12,24,F,4164 +1979,12,24,M,4326 +1979,12,25,F,3888 +1979,12,25,M,4080 +1979,12,26,F,4445 +1979,12,26,M,4786 +1979,12,27,F,5101 +1979,12,27,M,5403 +1979,12,28,F,5356 +1979,12,28,M,5605 +1979,12,29,F,4502 +1979,12,29,M,4488 +1979,12,30,F,4009 +1979,12,30,M,4241 +1979,12,31,F,4782 +1979,12,31,M,5000 +1979,12,99,F,1 +1979,12,99,M,3 +1980,1,1,F,4005 +1980,1,1,M,4227 +1980,1,2,F,4371 +1980,1,2,M,4640 +1980,1,3,F,4815 +1980,1,3,M,5087 +1980,1,4,F,4758 +1980,1,4,M,5181 +1980,1,5,F,4265 +1980,1,5,M,4426 +1980,1,6,F,4093 +1980,1,6,M,4120 +1980,1,7,F,4730 +1980,1,7,M,5103 +1980,1,8,F,4810 +1980,1,8,M,5012 +1980,1,9,F,4763 +1980,1,9,M,4801 +1980,1,10,F,4810 +1980,1,10,M,4949 +1980,1,11,F,5029 +1980,1,11,M,5205 +1980,1,12,F,4153 +1980,1,12,M,4460 +1980,1,13,F,4016 +1980,1,13,M,4275 +1980,1,14,F,4897 +1980,1,14,M,5204 +1980,1,15,F,4895 +1980,1,15,M,5077 +1980,1,16,F,4599 +1980,1,16,M,5061 +1980,1,17,F,4764 +1980,1,17,M,5048 +1980,1,18,F,5001 +1980,1,18,M,5179 +1980,1,19,F,4233 +1980,1,19,M,4497 +1980,1,20,F,3992 +1980,1,20,M,4465 +1980,1,21,F,4738 +1980,1,21,M,4937 +1980,1,22,F,4924 +1980,1,22,M,5152 +1980,1,23,F,4624 +1980,1,23,M,4969 +1980,1,24,F,4809 +1980,1,24,M,5099 +1980,1,25,F,4833 +1980,1,25,M,5234 +1980,1,26,F,4253 +1980,1,26,M,4477 +1980,1,27,F,4149 +1980,1,27,M,4109 +1980,1,28,F,4776 +1980,1,28,M,5104 +1980,1,29,F,4699 +1980,1,29,M,5169 +1980,1,30,F,4775 +1980,1,30,M,4902 +1980,1,31,F,4831 +1980,1,31,M,4908 +1980,2,1,F,4880 +1980,2,1,M,5116 +1980,2,2,F,4258 +1980,2,2,M,4540 +1980,2,3,F,4054 +1980,2,3,M,4231 +1980,2,4,F,4814 +1980,2,4,M,5002 +1980,2,5,F,4971 +1980,2,5,M,5280 +1980,2,6,F,4800 +1980,2,6,M,5107 +1980,2,7,F,4927 +1980,2,7,M,5181 +1980,2,8,F,4883 +1980,2,8,M,5118 +1980,2,9,F,4189 +1980,2,9,M,4583 +1980,2,10,F,4107 +1980,2,10,M,4247 +1980,2,11,F,5020 +1980,2,11,M,5134 +1980,2,12,F,5015 +1980,2,12,M,5237 +1980,2,13,F,4773 +1980,2,13,M,5017 +1980,2,14,F,5054 +1980,2,14,M,5378 +1980,2,15,F,5027 +1980,2,15,M,5174 +1980,2,16,F,4319 +1980,2,16,M,4599 +1980,2,17,F,4135 +1980,2,17,M,4436 +1980,2,18,F,4743 +1980,2,18,M,4973 +1980,2,19,F,5009 +1980,2,19,M,5166 +1980,2,20,F,4814 +1980,2,20,M,5279 +1980,2,21,F,4976 +1980,2,21,M,5180 +1980,2,22,F,4986 +1980,2,22,M,5282 +1980,2,23,F,4326 +1980,2,23,M,4630 +1980,2,24,F,4203 +1980,2,24,M,4401 +1980,2,25,F,4861 +1980,2,25,M,5171 +1980,2,26,F,5045 +1980,2,26,M,5132 +1980,2,27,F,4804 +1980,2,27,M,4979 +1980,2,28,F,4927 +1980,2,28,M,5284 +1980,2,29,F,4646 +1980,2,29,M,4969 +1980,2,99,F,2 +1980,3,1,F,4202 +1980,3,1,M,4408 +1980,3,2,F,4042 +1980,3,2,M,4297 +1980,3,3,F,4892 +1980,3,3,M,5161 +1980,3,4,F,4999 +1980,3,4,M,5114 +1980,3,5,F,4821 +1980,3,5,M,5157 +1980,3,6,F,4905 +1980,3,6,M,5162 +1980,3,7,F,4852 +1980,3,7,M,5191 +1980,3,8,F,4308 +1980,3,8,M,4575 +1980,3,9,F,4156 +1980,3,9,M,4284 +1980,3,10,F,4864 +1980,3,10,M,5058 +1980,3,11,F,4950 +1980,3,11,M,5284 +1980,3,12,F,4872 +1980,3,12,M,5203 +1980,3,13,F,4760 +1980,3,13,M,5010 +1980,3,14,F,4768 +1980,3,14,M,5193 +1980,3,15,F,4201 +1980,3,15,M,4510 +1980,3,16,F,4093 +1980,3,16,M,4336 +1980,3,17,F,4964 +1980,3,17,M,5295 +1980,3,18,F,4942 +1980,3,18,M,5159 +1980,3,19,F,4972 +1980,3,19,M,5139 +1980,3,20,F,4775 +1980,3,20,M,5024 +1980,3,21,F,4971 +1980,3,21,M,5385 +1980,3,22,F,4403 +1980,3,22,M,4499 +1980,3,23,F,4113 +1980,3,23,M,4417 +1980,3,24,F,4853 +1980,3,24,M,5247 +1980,3,25,F,5171 +1980,3,25,M,5382 +1980,3,26,F,4976 +1980,3,26,M,5118 +1980,3,27,F,4864 +1980,3,27,M,5088 +1980,3,28,F,4911 +1980,3,28,M,5204 +1980,3,29,F,4369 +1980,3,29,M,4498 +1980,3,30,F,4131 +1980,3,30,M,4351 +1980,3,31,F,4766 +1980,3,31,M,5131 +1980,3,99,F,2 +1980,3,99,M,2 +1980,4,1,F,4908 +1980,4,1,M,5238 +1980,4,2,F,4898 +1980,4,2,M,5190 +1980,4,3,F,4805 +1980,4,3,M,5082 +1980,4,4,F,4891 +1980,4,4,M,5142 +1980,4,5,F,4164 +1980,4,5,M,4312 +1980,4,6,F,4141 +1980,4,6,M,4272 +1980,4,7,F,4772 +1980,4,7,M,5091 +1980,4,8,F,4971 +1980,4,8,M,5352 +1980,4,9,F,4771 +1980,4,9,M,5186 +1980,4,10,F,4872 +1980,4,10,M,5071 +1980,4,11,F,4822 +1980,4,11,M,5123 +1980,4,12,F,4234 +1980,4,12,M,4310 +1980,4,13,F,4143 +1980,4,13,M,4138 +1980,4,14,F,4639 +1980,4,14,M,5182 +1980,4,15,F,4868 +1980,4,15,M,5273 +1980,4,16,F,4960 +1980,4,16,M,5170 +1980,4,17,F,4748 +1980,4,17,M,5003 +1980,4,18,F,4976 +1980,4,18,M,4985 +1980,4,19,F,4299 +1980,4,19,M,4343 +1980,4,20,F,4106 +1980,4,20,M,4354 +1980,4,21,F,4860 +1980,4,21,M,5144 +1980,4,22,F,4907 +1980,4,22,M,5437 +1980,4,23,F,4833 +1980,4,23,M,5152 +1980,4,24,F,4854 +1980,4,24,M,5016 +1980,4,25,F,4913 +1980,4,25,M,5094 +1980,4,26,F,4088 +1980,4,26,M,4322 +1980,4,27,F,3781 +1980,4,27,M,4075 +1980,4,28,F,4827 +1980,4,28,M,5099 +1980,4,29,F,4955 +1980,4,29,M,5200 +1980,4,30,F,4843 +1980,4,30,M,4989 +1980,4,99,F,1 +1980,4,99,M,3 +1980,5,1,F,4941 +1980,5,1,M,5190 +1980,5,2,F,4798 +1980,5,2,M,5193 +1980,5,3,F,4071 +1980,5,3,M,4588 +1980,5,4,F,3939 +1980,5,4,M,4147 +1980,5,5,F,5001 +1980,5,5,M,4950 +1980,5,6,F,5016 +1980,5,6,M,5183 +1980,5,7,F,4638 +1980,5,7,M,4886 +1980,5,8,F,4546 +1980,5,8,M,4872 +1980,5,9,F,4791 +1980,5,9,M,4975 +1980,5,10,F,4125 +1980,5,10,M,4306 +1980,5,11,F,4099 +1980,5,11,M,4213 +1980,5,12,F,4809 +1980,5,12,M,5113 +1980,5,13,F,4735 +1980,5,13,M,5232 +1980,5,14,F,4642 +1980,5,14,M,5075 +1980,5,15,F,4759 +1980,5,15,M,5073 +1980,5,16,F,4748 +1980,5,16,M,5094 +1980,5,17,F,4090 +1980,5,17,M,4295 +1980,5,18,F,4072 +1980,5,18,M,4251 +1980,5,19,F,4858 +1980,5,19,M,5126 +1980,5,20,F,5186 +1980,5,20,M,5385 +1980,5,21,F,4721 +1980,5,21,M,4961 +1980,5,22,F,4883 +1980,5,22,M,5226 +1980,5,23,F,5033 +1980,5,23,M,5225 +1980,5,24,F,4176 +1980,5,24,M,4483 +1980,5,25,F,4129 +1980,5,25,M,4333 +1980,5,26,F,4275 +1980,5,26,M,4369 +1980,5,27,F,4829 +1980,5,27,M,5320 +1980,5,28,F,4972 +1980,5,28,M,5226 +1980,5,29,F,4983 +1980,5,29,M,5206 +1980,5,30,F,5009 +1980,5,30,M,5173 +1980,5,31,F,4127 +1980,5,31,M,4447 +1980,6,1,F,4064 +1980,6,1,M,4390 +1980,6,2,F,4828 +1980,6,2,M,5105 +1980,6,3,F,4928 +1980,6,3,M,5330 +1980,6,4,F,4863 +1980,6,4,M,5147 +1980,6,5,F,4842 +1980,6,5,M,5136 +1980,6,6,F,4978 +1980,6,6,M,5244 +1980,6,7,F,4346 +1980,6,7,M,4470 +1980,6,8,F,3964 +1980,6,8,M,4219 +1980,6,9,F,4710 +1980,6,9,M,4956 +1980,6,10,F,5074 +1980,6,10,M,5266 +1980,6,11,F,4966 +1980,6,11,M,5076 +1980,6,12,F,4852 +1980,6,12,M,5114 +1980,6,13,F,4806 +1980,6,13,M,5081 +1980,6,14,F,4187 +1980,6,14,M,4528 +1980,6,15,F,4147 +1980,6,15,M,4527 +1980,6,16,F,5053 +1980,6,16,M,5196 +1980,6,17,F,4918 +1980,6,17,M,5291 +1980,6,18,F,5001 +1980,6,18,M,5335 +1980,6,19,F,4981 +1980,6,19,M,5259 +1980,6,20,F,5008 +1980,6,20,M,5318 +1980,6,21,F,4318 +1980,6,21,M,4494 +1980,6,22,F,4200 +1980,6,22,M,4533 +1980,6,23,F,5006 +1980,6,23,M,5486 +1980,6,24,F,5347 +1980,6,24,M,5512 +1980,6,25,F,5145 +1980,6,25,M,5405 +1980,6,26,F,5176 +1980,6,26,M,5445 +1980,6,27,F,5080 +1980,6,27,M,5608 +1980,6,28,F,4425 +1980,6,28,M,4586 +1980,6,29,F,4313 +1980,6,29,M,4507 +1980,6,30,F,5016 +1980,6,30,M,5355 +1980,6,99,F,1 +1980,6,99,M,2 +1980,7,1,F,5313 +1980,7,1,M,5608 +1980,7,2,F,5397 +1980,7,2,M,5517 +1980,7,3,F,5170 +1980,7,3,M,5524 +1980,7,4,F,4454 +1980,7,4,M,4749 +1980,7,5,F,4523 +1980,7,5,M,4705 +1980,7,6,F,4321 +1980,7,6,M,4596 +1980,7,7,F,5223 +1980,7,7,M,5261 +1980,7,8,F,5487 +1980,7,8,M,5803 +1980,7,9,F,5156 +1980,7,9,M,5644 +1980,7,10,F,5234 +1980,7,10,M,5534 +1980,7,11,F,5417 +1980,7,11,M,5661 +1980,7,12,F,4565 +1980,7,12,M,4705 +1980,7,13,F,4419 +1980,7,13,M,4524 +1980,7,14,F,5181 +1980,7,14,M,5432 +1980,7,15,F,5423 +1980,7,15,M,5672 +1980,7,16,F,5366 +1980,7,16,M,5699 +1980,7,17,F,5364 +1980,7,17,M,5698 +1980,7,18,F,5178 +1980,7,18,M,5518 +1980,7,19,F,4533 +1980,7,19,M,4658 +1980,7,20,F,4540 +1980,7,20,M,4589 +1980,7,21,F,5343 +1980,7,21,M,5510 +1980,7,22,F,5367 +1980,7,22,M,5700 +1980,7,23,F,5213 +1980,7,23,M,5403 +1980,7,24,F,5166 +1980,7,24,M,5449 +1980,7,25,F,5242 +1980,7,25,M,5543 +1980,7,26,F,4527 +1980,7,26,M,4902 +1980,7,27,F,4537 +1980,7,27,M,4602 +1980,7,28,F,5217 +1980,7,28,M,5709 +1980,7,29,F,5516 +1980,7,29,M,5945 +1980,7,30,F,5443 +1980,7,30,M,5683 +1980,7,31,F,5335 +1980,7,31,M,5640 +1980,7,99,F,2 +1980,8,1,F,5439 +1980,8,1,M,5567 +1980,8,2,F,4647 +1980,8,2,M,4938 +1980,8,3,F,4468 +1980,8,3,M,4708 +1980,8,4,F,5249 +1980,8,4,M,5534 +1980,8,5,F,5455 +1980,8,5,M,5739 +1980,8,6,F,5270 +1980,8,6,M,5515 +1980,8,7,F,5410 +1980,8,7,M,5634 +1980,8,8,F,5613 +1980,8,8,M,5879 +1980,8,9,F,4568 +1980,8,9,M,4898 +1980,8,10,F,4443 +1980,8,10,M,4702 +1980,8,11,F,5525 +1980,8,11,M,5501 +1980,8,12,F,5541 +1980,8,12,M,5830 +1980,8,13,F,5313 +1980,8,13,M,5610 +1980,8,14,F,5229 +1980,8,14,M,5527 +1980,8,15,F,5269 +1980,8,15,M,5628 +1980,8,16,F,4507 +1980,8,16,M,4854 +1980,8,17,F,4427 +1980,8,17,M,4574 +1980,8,18,F,5354 +1980,8,18,M,5579 +1980,8,19,F,5439 +1980,8,19,M,5754 +1980,8,20,F,5310 +1980,8,20,M,5632 +1980,8,21,F,5311 +1980,8,21,M,5500 +1980,8,22,F,5240 +1980,8,22,M,5539 +1980,8,23,F,4576 +1980,8,23,M,4695 +1980,8,24,F,4335 +1980,8,24,M,4768 +1980,8,25,F,5317 +1980,8,25,M,5593 +1980,8,26,F,5393 +1980,8,26,M,5758 +1980,8,27,F,5380 +1980,8,27,M,5625 +1980,8,28,F,5395 +1980,8,28,M,5612 +1980,8,29,F,5307 +1980,8,29,M,5618 +1980,8,30,F,4673 +1980,8,30,M,4837 +1980,8,31,F,4446 +1980,8,31,M,4646 +1980,9,1,F,4440 +1980,9,1,M,4689 +1980,9,2,F,5349 +1980,9,2,M,5708 +1980,9,3,F,5458 +1980,9,3,M,5716 +1980,9,4,F,5440 +1980,9,4,M,5599 +1980,9,5,F,5286 +1980,9,5,M,5727 +1980,9,6,F,4688 +1980,9,6,M,4857 +1980,9,7,F,4529 +1980,9,7,M,4758 +1980,9,8,F,5243 +1980,9,8,M,5657 +1980,9,9,F,5322 +1980,9,9,M,5697 +1980,9,10,F,5300 +1980,9,10,M,5703 +1980,9,11,F,5243 +1980,9,11,M,5553 +1980,9,12,F,5494 +1980,9,12,M,5704 +1980,9,13,F,4723 +1980,9,13,M,4950 +1980,9,14,F,4634 +1980,9,14,M,4865 +1980,9,15,F,5559 +1980,9,15,M,5865 +1980,9,16,F,5603 +1980,9,16,M,5811 +1980,9,17,F,5506 +1980,9,17,M,5786 +1980,9,18,F,5415 +1980,9,18,M,5902 +1980,9,19,F,5478 +1980,9,19,M,5848 +1980,9,20,F,4828 +1980,9,20,M,5139 +1980,9,21,F,4799 +1980,9,21,M,4974 +1980,9,22,F,5648 +1980,9,22,M,5965 +1980,9,23,F,5667 +1980,9,23,M,6055 +1980,9,24,F,5476 +1980,9,24,M,5857 +1980,9,25,F,5410 +1980,9,25,M,5567 +1980,9,26,F,5490 +1980,9,26,M,5673 +1980,9,27,F,4816 +1980,9,27,M,4938 +1980,9,28,F,4565 +1980,9,28,M,4698 +1980,9,29,F,5367 +1980,9,29,M,5732 +1980,9,30,F,5603 +1980,9,30,M,5698 +1980,9,99,F,1 +1980,9,99,M,6 +1980,10,1,F,5390 +1980,10,1,M,5714 +1980,10,2,F,5327 +1980,10,2,M,5602 +1980,10,3,F,5417 +1980,10,3,M,5631 +1980,10,4,F,4636 +1980,10,4,M,4716 +1980,10,5,F,4379 +1980,10,5,M,4634 +1980,10,6,F,5086 +1980,10,6,M,5453 +1980,10,7,F,5100 +1980,10,7,M,5502 +1980,10,8,F,5402 +1980,10,8,M,5425 +1980,10,9,F,5187 +1980,10,9,M,5497 +1980,10,10,F,5260 +1980,10,10,M,5494 +1980,10,11,F,4422 +1980,10,11,M,4562 +1980,10,12,F,4191 +1980,10,12,M,4483 +1980,10,13,F,4952 +1980,10,13,M,5141 +1980,10,14,F,5074 +1980,10,14,M,5538 +1980,10,15,F,5143 +1980,10,15,M,5437 +1980,10,16,F,4976 +1980,10,16,M,5256 +1980,10,17,F,5091 +1980,10,17,M,5237 +1980,10,18,F,4298 +1980,10,18,M,4672 +1980,10,19,F,4237 +1980,10,19,M,4432 +1980,10,20,F,5044 +1980,10,20,M,5245 +1980,10,21,F,5108 +1980,10,21,M,5265 +1980,10,22,F,4936 +1980,10,22,M,5153 +1980,10,23,F,4937 +1980,10,23,M,5114 +1980,10,24,F,5003 +1980,10,24,M,5377 +1980,10,25,F,4362 +1980,10,25,M,4508 +1980,10,26,F,4547 +1980,10,26,M,4612 +1980,10,27,F,4862 +1980,10,27,M,5238 +1980,10,28,F,5039 +1980,10,28,M,5288 +1980,10,29,F,4863 +1980,10,29,M,5218 +1980,10,30,F,4751 +1980,10,30,M,5231 +1980,10,31,F,4996 +1980,10,31,M,5105 +1980,10,99,F,1 +1980,10,99,M,3 +1980,11,1,F,4321 +1980,11,1,M,4530 +1980,11,2,F,4229 +1980,11,2,M,4412 +1980,11,3,F,4992 +1980,11,3,M,5297 +1980,11,4,F,5110 +1980,11,4,M,5355 +1980,11,5,F,5102 +1980,11,5,M,5271 +1980,11,6,F,4964 +1980,11,6,M,5164 +1980,11,7,F,5197 +1980,11,7,M,5320 +1980,11,8,F,4394 +1980,11,8,M,4512 +1980,11,9,F,4302 +1980,11,9,M,4443 +1980,11,10,F,5010 +1980,11,10,M,5239 +1980,11,11,F,5013 +1980,11,11,M,5313 +1980,11,12,F,4879 +1980,11,12,M,5180 +1980,11,13,F,4855 +1980,11,13,M,5075 +1980,11,14,F,5175 +1980,11,14,M,5238 +1980,11,15,F,4393 +1980,11,15,M,4436 +1980,11,16,F,4077 +1980,11,16,M,4486 +1980,11,17,F,4897 +1980,11,17,M,5278 +1980,11,18,F,5074 +1980,11,18,M,5426 +1980,11,19,F,4967 +1980,11,19,M,5213 +1980,11,20,F,4889 +1980,11,20,M,5088 +1980,11,21,F,4973 +1980,11,21,M,5270 +1980,11,22,F,4194 +1980,11,22,M,4486 +1980,11,23,F,4185 +1980,11,23,M,4258 +1980,11,24,F,5086 +1980,11,24,M,5361 +1980,11,25,F,5102 +1980,11,25,M,5394 +1980,11,26,F,4907 +1980,11,26,M,5329 +1980,11,27,F,3982 +1980,11,27,M,4152 +1980,11,28,F,4775 +1980,11,28,M,4874 +1980,11,29,F,4223 +1980,11,29,M,4598 +1980,11,30,F,4303 +1980,11,30,M,4527 +1980,11,99,F,3 +1980,11,99,M,2 +1980,12,1,F,5075 +1980,12,1,M,5150 +1980,12,2,F,5207 +1980,12,2,M,5504 +1980,12,3,F,4872 +1980,12,3,M,5233 +1980,12,4,F,4855 +1980,12,4,M,5070 +1980,12,5,F,5086 +1980,12,5,M,5202 +1980,12,6,F,4191 +1980,12,6,M,4468 +1980,12,7,F,4162 +1980,12,7,M,4351 +1980,12,8,F,5029 +1980,12,8,M,5339 +1980,12,9,F,4947 +1980,12,9,M,5375 +1980,12,10,F,4999 +1980,12,10,M,5121 +1980,12,11,F,4956 +1980,12,11,M,5042 +1980,12,12,F,4918 +1980,12,12,M,5121 +1980,12,13,F,4330 +1980,12,13,M,4428 +1980,12,14,F,4290 +1980,12,14,M,4233 +1980,12,15,F,5169 +1980,12,15,M,5339 +1980,12,16,F,5198 +1980,12,16,M,5574 +1980,12,17,F,5065 +1980,12,17,M,5459 +1980,12,18,F,5045 +1980,12,18,M,5535 +1980,12,19,F,5145 +1980,12,19,M,5517 +1980,12,20,F,4190 +1980,12,20,M,4336 +1980,12,21,F,4043 +1980,12,21,M,4246 +1980,12,22,F,4864 +1980,12,22,M,5171 +1980,12,23,F,4973 +1980,12,23,M,5145 +1980,12,24,F,4329 +1980,12,24,M,4650 +1980,12,25,F,3897 +1980,12,25,M,4082 +1980,12,26,F,4556 +1980,12,26,M,4757 +1980,12,27,F,4334 +1980,12,27,M,4414 +1980,12,28,F,4229 +1980,12,28,M,4347 +1980,12,29,F,5266 +1980,12,29,M,5615 +1980,12,30,F,5645 +1980,12,30,M,5958 +1980,12,31,F,5361 +1980,12,31,M,5586 +1980,12,99,F,2 +1981,1,1,F,3952 +1981,1,1,M,4347 +1981,1,2,F,4492 +1981,1,2,M,4553 +1981,1,3,F,4102 +1981,1,3,M,4356 +1981,1,4,F,4097 +1981,1,4,M,4198 +1981,1,5,F,4655 +1981,1,5,M,4959 +1981,1,6,F,4846 +1981,1,6,M,5282 +1981,1,7,F,5001 +1981,1,7,M,5139 +1981,1,8,F,4587 +1981,1,8,M,4836 +1981,1,9,F,4730 +1981,1,9,M,4972 +1981,1,10,F,4218 +1981,1,10,M,4231 +1981,1,11,F,3960 +1981,1,11,M,4316 +1981,1,12,F,4787 +1981,1,12,M,5113 +1981,1,13,F,4962 +1981,1,13,M,5201 +1981,1,14,F,5127 +1981,1,14,M,5292 +1981,1,15,F,4992 +1981,1,15,M,5165 +1981,1,16,F,4886 +1981,1,16,M,5278 +1981,1,17,F,4159 +1981,1,17,M,4442 +1981,1,18,F,4140 +1981,1,18,M,4262 +1981,1,19,F,5029 +1981,1,19,M,5339 +1981,1,20,F,5028 +1981,1,20,M,5427 +1981,1,21,F,4965 +1981,1,21,M,5201 +1981,1,22,F,4827 +1981,1,22,M,5176 +1981,1,23,F,4963 +1981,1,23,M,5160 +1981,1,24,F,4324 +1981,1,24,M,4501 +1981,1,25,F,4103 +1981,1,25,M,4266 +1981,1,26,F,4941 +1981,1,26,M,5272 +1981,1,27,F,5037 +1981,1,27,M,5309 +1981,1,28,F,4949 +1981,1,28,M,5196 +1981,1,29,F,4898 +1981,1,29,M,4976 +1981,1,30,F,4977 +1981,1,30,M,5129 +1981,1,31,F,4161 +1981,1,31,M,4296 +1981,1,99,F,2 +1981,1,99,M,2 +1981,2,1,F,4187 +1981,2,1,M,4287 +1981,2,2,F,5058 +1981,2,2,M,5227 +1981,2,3,F,5001 +1981,2,3,M,5230 +1981,2,4,F,4927 +1981,2,4,M,5156 +1981,2,5,F,4870 +1981,2,5,M,5115 +1981,2,6,F,4954 +1981,2,6,M,5145 +1981,2,7,F,4190 +1981,2,7,M,4373 +1981,2,8,F,4151 +1981,2,8,M,4460 +1981,2,9,F,5098 +1981,2,9,M,5215 +1981,2,10,F,5122 +1981,2,10,M,5233 +1981,2,11,F,4946 +1981,2,11,M,5166 +1981,2,12,F,4976 +1981,2,12,M,5356 +1981,2,13,F,4834 +1981,2,13,M,4836 +1981,2,14,F,4443 +1981,2,14,M,4671 +1981,2,15,F,4212 +1981,2,15,M,4326 +1981,2,16,F,4829 +1981,2,16,M,4967 +1981,2,17,F,5161 +1981,2,17,M,5248 +1981,2,18,F,5063 +1981,2,18,M,5250 +1981,2,19,F,5035 +1981,2,19,M,5302 +1981,2,20,F,4973 +1981,2,20,M,5395 +1981,2,21,F,4367 +1981,2,21,M,4608 +1981,2,22,F,4275 +1981,2,22,M,4382 +1981,2,23,F,4879 +1981,2,23,M,5278 +1981,2,24,F,5127 +1981,2,24,M,5296 +1981,2,25,F,4984 +1981,2,25,M,5286 +1981,2,26,F,4920 +1981,2,26,M,5134 +1981,2,27,F,5144 +1981,2,27,M,5082 +1981,2,28,F,4359 +1981,2,28,M,4533 +1981,2,99,F,1 +1981,2,99,M,3 +1981,3,1,F,4175 +1981,3,1,M,4359 +1981,3,2,F,4923 +1981,3,2,M,5207 +1981,3,3,F,5067 +1981,3,3,M,5404 +1981,3,4,F,4974 +1981,3,4,M,5303 +1981,3,5,F,4920 +1981,3,5,M,5248 +1981,3,6,F,4883 +1981,3,6,M,5251 +1981,3,7,F,4325 +1981,3,7,M,4372 +1981,3,8,F,4107 +1981,3,8,M,4262 +1981,3,9,F,4905 +1981,3,9,M,5007 +1981,3,10,F,5030 +1981,3,10,M,5318 +1981,3,11,F,4914 +1981,3,11,M,5270 +1981,3,12,F,5011 +1981,3,12,M,5126 +1981,3,13,F,4799 +1981,3,13,M,5162 +1981,3,14,F,4321 +1981,3,14,M,4616 +1981,3,15,F,4102 +1981,3,15,M,4236 +1981,3,16,F,4951 +1981,3,16,M,5318 +1981,3,17,F,5294 +1981,3,17,M,5437 +1981,3,18,F,4860 +1981,3,18,M,5269 +1981,3,19,F,4935 +1981,3,19,M,5095 +1981,3,20,F,4916 +1981,3,20,M,5268 +1981,3,21,F,4214 +1981,3,21,M,4559 +1981,3,22,F,4083 +1981,3,22,M,4375 +1981,3,23,F,4897 +1981,3,23,M,5143 +1981,3,24,F,5100 +1981,3,24,M,5353 +1981,3,25,F,4883 +1981,3,25,M,5207 +1981,3,26,F,5010 +1981,3,26,M,5183 +1981,3,27,F,5112 +1981,3,27,M,5342 +1981,3,28,F,4291 +1981,3,28,M,4544 +1981,3,29,F,4190 +1981,3,29,M,4342 +1981,3,30,F,4842 +1981,3,30,M,5221 +1981,3,31,F,5031 +1981,3,31,M,5296 +1981,4,1,F,4795 +1981,4,1,M,5065 +1981,4,2,F,4928 +1981,4,2,M,5076 +1981,4,3,F,4888 +1981,4,3,M,5263 +1981,4,4,F,4344 +1981,4,4,M,4544 +1981,4,5,F,4069 +1981,4,5,M,4309 +1981,4,6,F,4781 +1981,4,6,M,5207 +1981,4,7,F,5059 +1981,4,7,M,5297 +1981,4,8,F,4897 +1981,4,8,M,5137 +1981,4,9,F,4811 +1981,4,9,M,5241 +1981,4,10,F,4916 +1981,4,10,M,5199 +1981,4,11,F,4264 +1981,4,11,M,4438 +1981,4,12,F,4067 +1981,4,12,M,4271 +1981,4,13,F,4770 +1981,4,13,M,4966 +1981,4,14,F,4975 +1981,4,14,M,5302 +1981,4,15,F,4903 +1981,4,15,M,5063 +1981,4,16,F,4664 +1981,4,16,M,4970 +1981,4,17,F,4759 +1981,4,17,M,4834 +1981,4,18,F,4226 +1981,4,18,M,4123 +1981,4,19,F,3943 +1981,4,19,M,4179 +1981,4,20,F,4629 +1981,4,20,M,4929 +1981,4,21,F,4900 +1981,4,21,M,5255 +1981,4,22,F,4785 +1981,4,22,M,5207 +1981,4,23,F,4901 +1981,4,23,M,5177 +1981,4,24,F,4899 +1981,4,24,M,5022 +1981,4,25,F,4124 +1981,4,25,M,4307 +1981,4,26,F,3818 +1981,4,26,M,3938 +1981,4,27,F,4589 +1981,4,27,M,5068 +1981,4,28,F,4903 +1981,4,28,M,5339 +1981,4,29,F,4786 +1981,4,29,M,5173 +1981,4,30,F,4762 +1981,4,30,M,4913 +1981,5,1,F,4895 +1981,5,1,M,5152 +1981,5,2,F,4014 +1981,5,2,M,4315 +1981,5,3,F,3905 +1981,5,3,M,4210 +1981,5,4,F,4818 +1981,5,4,M,4937 +1981,5,5,F,5149 +1981,5,5,M,5234 +1981,5,6,F,4858 +1981,5,6,M,5026 +1981,5,7,F,4811 +1981,5,7,M,5095 +1981,5,8,F,4957 +1981,5,8,M,5129 +1981,5,9,F,4079 +1981,5,9,M,4275 +1981,5,10,F,4231 +1981,5,10,M,4273 +1981,5,11,F,4939 +1981,5,11,M,5003 +1981,5,12,F,4969 +1981,5,12,M,5107 +1981,5,13,F,4885 +1981,5,13,M,5010 +1981,5,14,F,4958 +1981,5,14,M,5187 +1981,5,15,F,4864 +1981,5,15,M,5331 +1981,5,16,F,4163 +1981,5,16,M,4355 +1981,5,17,F,3956 +1981,5,17,M,4238 +1981,5,18,F,4890 +1981,5,18,M,5269 +1981,5,19,F,4973 +1981,5,19,M,5336 +1981,5,20,F,5029 +1981,5,20,M,5057 +1981,5,21,F,4949 +1981,5,21,M,5233 +1981,5,22,F,5143 +1981,5,22,M,5281 +1981,5,23,F,4184 +1981,5,23,M,4576 +1981,5,24,F,4095 +1981,5,24,M,4249 +1981,5,25,F,4430 +1981,5,25,M,4413 +1981,5,26,F,5074 +1981,5,26,M,5397 +1981,5,27,F,5158 +1981,5,27,M,5516 +1981,5,28,F,4919 +1981,5,28,M,5481 +1981,5,29,F,5073 +1981,5,29,M,5338 +1981,5,30,F,4284 +1981,5,30,M,4568 +1981,5,31,F,4229 +1981,5,31,M,4369 +1981,5,99,F,1 +1981,6,1,F,4936 +1981,6,1,M,5141 +1981,6,2,F,4996 +1981,6,2,M,5359 +1981,6,3,F,4883 +1981,6,3,M,5312 +1981,6,4,F,4922 +1981,6,4,M,5286 +1981,6,5,F,4985 +1981,6,5,M,5381 +1981,6,6,F,4371 +1981,6,6,M,4594 +1981,6,7,F,4196 +1981,6,7,M,4442 +1981,6,8,F,4950 +1981,6,8,M,5256 +1981,6,9,F,5118 +1981,6,9,M,5451 +1981,6,10,F,5129 +1981,6,10,M,5250 +1981,6,11,F,4975 +1981,6,11,M,5156 +1981,6,12,F,4857 +1981,6,12,M,5305 +1981,6,13,F,4274 +1981,6,13,M,4579 +1981,6,14,F,4086 +1981,6,14,M,4398 +1981,6,15,F,4933 +1981,6,15,M,5249 +1981,6,16,F,5184 +1981,6,16,M,5565 +1981,6,17,F,5014 +1981,6,17,M,5400 +1981,6,18,F,5001 +1981,6,18,M,5071 +1981,6,19,F,5180 +1981,6,19,M,5342 +1981,6,20,F,4402 +1981,6,20,M,4610 +1981,6,21,F,4264 +1981,6,21,M,4449 +1981,6,22,F,5102 +1981,6,22,M,5495 +1981,6,23,F,5104 +1981,6,23,M,5436 +1981,6,24,F,4908 +1981,6,24,M,5417 +1981,6,25,F,4992 +1981,6,25,M,5385 +1981,6,26,F,5188 +1981,6,26,M,5336 +1981,6,27,F,4149 +1981,6,27,M,4500 +1981,6,28,F,4215 +1981,6,28,M,4384 +1981,6,29,F,5154 +1981,6,29,M,5348 +1981,6,30,F,5375 +1981,6,30,M,5682 +1981,6,99,F,1 +1981,6,99,M,2 +1981,7,1,F,5143 +1981,7,1,M,5536 +1981,7,2,F,5238 +1981,7,2,M,5419 +1981,7,3,F,4663 +1981,7,3,M,5054 +1981,7,4,F,4373 +1981,7,4,M,4562 +1981,7,5,F,4372 +1981,7,5,M,4503 +1981,7,6,F,5109 +1981,7,6,M,5493 +1981,7,7,F,5478 +1981,7,7,M,6020 +1981,7,8,F,5551 +1981,7,8,M,5654 +1981,7,9,F,5384 +1981,7,9,M,5762 +1981,7,10,F,5494 +1981,7,10,M,5870 +1981,7,11,F,4624 +1981,7,11,M,4828 +1981,7,12,F,4363 +1981,7,12,M,4634 +1981,7,13,F,5094 +1981,7,13,M,5524 +1981,7,14,F,5617 +1981,7,14,M,5960 +1981,7,15,F,5435 +1981,7,15,M,5673 +1981,7,16,F,5375 +1981,7,16,M,5567 +1981,7,17,F,5426 +1981,7,17,M,5700 +1981,7,18,F,4534 +1981,7,18,M,4799 +1981,7,19,F,4418 +1981,7,19,M,4575 +1981,7,20,F,5366 +1981,7,20,M,5745 +1981,7,21,F,5542 +1981,7,21,M,5771 +1981,7,22,F,5442 +1981,7,22,M,5622 +1981,7,23,F,5281 +1981,7,23,M,5684 +1981,7,24,F,5334 +1981,7,24,M,5676 +1981,7,25,F,4556 +1981,7,25,M,4874 +1981,7,26,F,4632 +1981,7,26,M,4622 +1981,7,27,F,5330 +1981,7,27,M,5563 +1981,7,28,F,5577 +1981,7,28,M,5902 +1981,7,29,F,5430 +1981,7,29,M,5781 +1981,7,30,F,5323 +1981,7,30,M,5677 +1981,7,31,F,5356 +1981,7,31,M,5855 +1981,7,99,M,4 +1981,8,1,F,4806 +1981,8,1,M,4927 +1981,8,2,F,4522 +1981,8,2,M,4754 +1981,8,3,F,5468 +1981,8,3,M,5684 +1981,8,4,F,5640 +1981,8,4,M,6057 +1981,8,5,F,5617 +1981,8,5,M,5821 +1981,8,6,F,5396 +1981,8,6,M,5757 +1981,8,7,F,5448 +1981,8,7,M,5808 +1981,8,8,F,4857 +1981,8,8,M,4946 +1981,8,9,F,4599 +1981,8,9,M,4761 +1981,8,10,F,5360 +1981,8,10,M,5692 +1981,8,11,F,5529 +1981,8,11,M,5713 +1981,8,12,F,5518 +1981,8,12,M,5839 +1981,8,13,F,5417 +1981,8,13,M,5671 +1981,8,14,F,5586 +1981,8,14,M,5847 +1981,8,15,F,4750 +1981,8,15,M,4878 +1981,8,16,F,4595 +1981,8,16,M,4687 +1981,8,17,F,5316 +1981,8,17,M,5732 +1981,8,18,F,5571 +1981,8,18,M,5836 +1981,8,19,F,5418 +1981,8,19,M,5641 +1981,8,20,F,5349 +1981,8,20,M,5607 +1981,8,21,F,5290 +1981,8,21,M,5801 +1981,8,22,F,4810 +1981,8,22,M,4930 +1981,8,23,F,4530 +1981,8,23,M,4695 +1981,8,24,F,5394 +1981,8,24,M,5753 +1981,8,25,F,5479 +1981,8,25,M,5928 +1981,8,26,F,5434 +1981,8,26,M,5764 +1981,8,27,F,5462 +1981,8,27,M,5597 +1981,8,28,F,5411 +1981,8,28,M,5849 +1981,8,29,F,4712 +1981,8,29,M,4955 +1981,8,30,F,4548 +1981,8,30,M,4713 +1981,8,31,F,5348 +1981,8,31,M,5702 +1981,8,99,M,2 +1981,9,1,F,5469 +1981,9,1,M,5687 +1981,9,2,F,5322 +1981,9,2,M,5600 +1981,9,3,F,5349 +1981,9,3,M,5545 +1981,9,4,F,5443 +1981,9,4,M,5737 +1981,9,5,F,4581 +1981,9,5,M,4773 +1981,9,6,F,4388 +1981,9,6,M,4707 +1981,9,7,F,4461 +1981,9,7,M,4752 +1981,9,8,F,5436 +1981,9,8,M,5635 +1981,9,9,F,5577 +1981,9,9,M,5779 +1981,9,10,F,5529 +1981,9,10,M,5716 +1981,9,11,F,5534 +1981,9,11,M,5937 +1981,9,12,F,4757 +1981,9,12,M,4804 +1981,9,13,F,4636 +1981,9,13,M,4760 +1981,9,14,F,5471 +1981,9,14,M,5906 +1981,9,15,F,5514 +1981,9,15,M,5908 +1981,9,16,F,5602 +1981,9,16,M,5763 +1981,9,17,F,5405 +1981,9,17,M,5666 +1981,9,18,F,5428 +1981,9,18,M,5720 +1981,9,19,F,4605 +1981,9,19,M,5004 +1981,9,20,F,4598 +1981,9,20,M,4934 +1981,9,21,F,5568 +1981,9,21,M,5694 +1981,9,22,F,5570 +1981,9,22,M,5918 +1981,9,23,F,5467 +1981,9,23,M,5814 +1981,9,24,F,5558 +1981,9,24,M,5643 +1981,9,25,F,5626 +1981,9,25,M,5834 +1981,9,26,F,4855 +1981,9,26,M,4848 +1981,9,27,F,4583 +1981,9,27,M,4754 +1981,9,28,F,5577 +1981,9,28,M,5764 +1981,9,29,F,5368 +1981,9,29,M,5706 +1981,9,30,F,5401 +1981,9,30,M,5591 +1981,9,99,F,4 +1981,10,1,F,5263 +1981,10,1,M,5618 +1981,10,2,F,5298 +1981,10,2,M,5720 +1981,10,3,F,4529 +1981,10,3,M,4789 +1981,10,4,F,4314 +1981,10,4,M,4591 +1981,10,5,F,5459 +1981,10,5,M,5415 +1981,10,6,F,5409 +1981,10,6,M,5490 +1981,10,7,F,5150 +1981,10,7,M,5333 +1981,10,8,F,5130 +1981,10,8,M,5275 +1981,10,9,F,5253 +1981,10,9,M,5652 +1981,10,10,F,4582 +1981,10,10,M,4731 +1981,10,11,F,4215 +1981,10,11,M,4541 +1981,10,12,F,5025 +1981,10,12,M,5347 +1981,10,13,F,5130 +1981,10,13,M,5486 +1981,10,14,F,4948 +1981,10,14,M,5266 +1981,10,15,F,5177 +1981,10,15,M,5279 +1981,10,16,F,5187 +1981,10,16,M,5529 +1981,10,17,F,4140 +1981,10,17,M,4397 +1981,10,18,F,4058 +1981,10,18,M,4482 +1981,10,19,F,4813 +1981,10,19,M,5210 +1981,10,20,F,5045 +1981,10,20,M,5232 +1981,10,21,F,5167 +1981,10,21,M,5293 +1981,10,22,F,5016 +1981,10,22,M,5251 +1981,10,23,F,5059 +1981,10,23,M,5257 +1981,10,24,F,4257 +1981,10,24,M,4430 +1981,10,25,F,4276 +1981,10,25,M,4457 +1981,10,26,F,5007 +1981,10,26,M,5037 +1981,10,27,F,5048 +1981,10,27,M,5404 +1981,10,28,F,4901 +1981,10,28,M,5252 +1981,10,29,F,4974 +1981,10,29,M,5137 +1981,10,30,F,5056 +1981,10,30,M,5246 +1981,10,31,F,4248 +1981,10,31,M,4395 +1981,10,99,F,4 +1981,10,99,M,1 +1981,11,1,F,4066 +1981,11,1,M,4292 +1981,11,2,F,5042 +1981,11,2,M,5261 +1981,11,3,F,5105 +1981,11,3,M,5292 +1981,11,4,F,5020 +1981,11,4,M,5330 +1981,11,5,F,5039 +1981,11,5,M,5276 +1981,11,6,F,5201 +1981,11,6,M,5477 +1981,11,7,F,4370 +1981,11,7,M,4427 +1981,11,8,F,4137 +1981,11,8,M,4334 +1981,11,9,F,4981 +1981,11,9,M,5174 +1981,11,10,F,5113 +1981,11,10,M,5243 +1981,11,11,F,4808 +1981,11,11,M,5242 +1981,11,12,F,5011 +1981,11,12,M,5245 +1981,11,13,F,4768 +1981,11,13,M,5151 +1981,11,14,F,4256 +1981,11,14,M,4540 +1981,11,15,F,4198 +1981,11,15,M,4301 +1981,11,16,F,5041 +1981,11,16,M,5412 +1981,11,17,F,5413 +1981,11,17,M,5352 +1981,11,18,F,4898 +1981,11,18,M,5246 +1981,11,19,F,4893 +1981,11,19,M,5331 +1981,11,20,F,5097 +1981,11,20,M,5477 +1981,11,21,F,4250 +1981,11,21,M,4496 +1981,11,22,F,4124 +1981,11,22,M,4303 +1981,11,23,F,5015 +1981,11,23,M,5320 +1981,11,24,F,5065 +1981,11,24,M,5463 +1981,11,25,F,5089 +1981,11,25,M,5363 +1981,11,26,F,3907 +1981,11,26,M,4247 +1981,11,27,F,4650 +1981,11,27,M,5000 +1981,11,28,F,4109 +1981,11,28,M,4378 +1981,11,29,F,4168 +1981,11,29,M,4360 +1981,11,30,F,4983 +1981,11,30,M,5234 +1981,11,99,F,2 +1981,11,99,M,4 +1981,12,1,F,5366 +1981,12,1,M,5514 +1981,12,2,F,5029 +1981,12,2,M,5427 +1981,12,3,F,4938 +1981,12,3,M,5175 +1981,12,4,F,4839 +1981,12,4,M,5081 +1981,12,5,F,4191 +1981,12,5,M,4369 +1981,12,6,F,4023 +1981,12,6,M,4293 +1981,12,7,F,5007 +1981,12,7,M,5083 +1981,12,8,F,5247 +1981,12,8,M,5374 +1981,12,9,F,4921 +1981,12,9,M,5191 +1981,12,10,F,4825 +1981,12,10,M,5110 +1981,12,11,F,4919 +1981,12,11,M,5245 +1981,12,12,F,4166 +1981,12,12,M,4469 +1981,12,13,F,4037 +1981,12,13,M,4247 +1981,12,14,F,5174 +1981,12,14,M,5191 +1981,12,15,F,5233 +1981,12,15,M,5566 +1981,12,16,F,5143 +1981,12,16,M,5190 +1981,12,17,F,5150 +1981,12,17,M,5522 +1981,12,18,F,5242 +1981,12,18,M,5611 +1981,12,19,F,4272 +1981,12,19,M,4392 +1981,12,20,F,3952 +1981,12,20,M,4221 +1981,12,21,F,5074 +1981,12,21,M,5488 +1981,12,22,F,5098 +1981,12,22,M,5469 +1981,12,23,F,4775 +1981,12,23,M,5066 +1981,12,24,F,4230 +1981,12,24,M,4511 +1981,12,25,F,3871 +1981,12,25,M,4152 +1981,12,26,F,4065 +1981,12,26,M,4287 +1981,12,27,F,4229 +1981,12,27,M,4424 +1981,12,28,F,5356 +1981,12,28,M,5689 +1981,12,29,F,5476 +1981,12,29,M,5803 +1981,12,30,F,5388 +1981,12,30,M,5648 +1981,12,31,F,5193 +1981,12,31,M,5201 +1981,12,99,M,2 +1982,1,1,F,4254 +1982,1,1,M,4306 +1982,1,2,F,4063 +1982,1,2,M,4245 +1982,1,3,F,4279 +1982,1,3,M,4327 +1982,1,4,F,4838 +1982,1,4,M,5120 +1982,1,5,F,5047 +1982,1,5,M,5206 +1982,1,6,F,4956 +1982,1,6,M,5226 +1982,1,7,F,4936 +1982,1,7,M,5013 +1982,1,8,F,4885 +1982,1,8,M,5202 +1982,1,9,F,4276 +1982,1,9,M,4208 +1982,1,10,F,4109 +1982,1,10,M,4278 +1982,1,11,F,4890 +1982,1,11,M,5336 +1982,1,12,F,5124 +1982,1,12,M,5328 +1982,1,13,F,5063 +1982,1,13,M,5119 +1982,1,14,F,4867 +1982,1,14,M,5233 +1982,1,15,F,4897 +1982,1,15,M,5072 +1982,1,16,F,4258 +1982,1,16,M,4447 +1982,1,17,F,4186 +1982,1,17,M,4336 +1982,1,18,F,5038 +1982,1,18,M,5215 +1982,1,19,F,5210 +1982,1,19,M,5498 +1982,1,20,F,5034 +1982,1,20,M,5300 +1982,1,21,F,4937 +1982,1,21,M,5239 +1982,1,22,F,5062 +1982,1,22,M,5363 +1982,1,23,F,4234 +1982,1,23,M,4472 +1982,1,24,F,4139 +1982,1,24,M,4393 +1982,1,25,F,5061 +1982,1,25,M,5171 +1982,1,26,F,5016 +1982,1,26,M,5441 +1982,1,27,F,4983 +1982,1,27,M,5173 +1982,1,28,F,4946 +1982,1,28,M,5167 +1982,1,29,F,4950 +1982,1,29,M,5257 +1982,1,30,F,4315 +1982,1,30,M,4411 +1982,1,31,F,4180 +1982,1,31,M,4200 +1982,1,99,M,6 +1982,2,1,F,5052 +1982,2,1,M,5170 +1982,2,2,F,4983 +1982,2,2,M,5443 +1982,2,3,F,4922 +1982,2,3,M,5247 +1982,2,4,F,4850 +1982,2,4,M,5220 +1982,2,5,F,5024 +1982,2,5,M,5218 +1982,2,6,F,4358 +1982,2,6,M,4446 +1982,2,7,F,4149 +1982,2,7,M,4365 +1982,2,8,F,4965 +1982,2,8,M,5397 +1982,2,9,F,5135 +1982,2,9,M,5416 +1982,2,10,F,5098 +1982,2,10,M,5326 +1982,2,11,F,5042 +1982,2,11,M,5360 +1982,2,12,F,5090 +1982,2,12,M,5384 +1982,2,13,F,4394 +1982,2,13,M,4569 +1982,2,14,F,4240 +1982,2,14,M,4440 +1982,2,15,F,4943 +1982,2,15,M,5263 +1982,2,16,F,5231 +1982,2,16,M,5506 +1982,2,17,F,5171 +1982,2,17,M,5361 +1982,2,18,F,5026 +1982,2,18,M,5340 +1982,2,19,F,5082 +1982,2,19,M,5293 +1982,2,20,F,4374 +1982,2,20,M,4549 +1982,2,21,F,4231 +1982,2,21,M,4478 +1982,2,22,F,5160 +1982,2,22,M,5417 +1982,2,23,F,5047 +1982,2,23,M,5427 +1982,2,24,F,5186 +1982,2,24,M,5276 +1982,2,25,F,5060 +1982,2,25,M,5307 +1982,2,26,F,4868 +1982,2,26,M,5179 +1982,2,27,F,4394 +1982,2,27,M,4458 +1982,2,28,F,4062 +1982,2,28,M,4322 +1982,2,99,F,2 +1982,2,99,M,4 +1982,3,1,F,5109 +1982,3,1,M,5148 +1982,3,2,F,5186 +1982,3,2,M,5493 +1982,3,3,F,5134 +1982,3,3,M,5372 +1982,3,4,F,4926 +1982,3,4,M,5279 +1982,3,5,F,5131 +1982,3,5,M,5345 +1982,3,6,F,4264 +1982,3,6,M,4504 +1982,3,7,F,4075 +1982,3,7,M,4324 +1982,3,8,F,5067 +1982,3,8,M,5226 +1982,3,9,F,5168 +1982,3,9,M,5249 +1982,3,10,F,5075 +1982,3,10,M,5349 +1982,3,11,F,5035 +1982,3,11,M,5198 +1982,3,12,F,5118 +1982,3,12,M,5251 +1982,3,13,F,4479 +1982,3,13,M,4487 +1982,3,14,F,4031 +1982,3,14,M,4371 +1982,3,15,F,4810 +1982,3,15,M,5288 +1982,3,16,F,5036 +1982,3,16,M,5511 +1982,3,17,F,5209 +1982,3,17,M,5374 +1982,3,18,F,5126 +1982,3,18,M,5321 +1982,3,19,F,4915 +1982,3,19,M,5344 +1982,3,20,F,4259 +1982,3,20,M,4446 +1982,3,21,F,4041 +1982,3,21,M,4272 +1982,3,22,F,4924 +1982,3,22,M,5132 +1982,3,23,F,4905 +1982,3,23,M,5433 +1982,3,24,F,4965 +1982,3,24,M,5245 +1982,3,25,F,4998 +1982,3,25,M,5240 +1982,3,26,F,5004 +1982,3,26,M,5276 +1982,3,27,F,4215 +1982,3,27,M,4353 +1982,3,28,F,4044 +1982,3,28,M,4170 +1982,3,29,F,4947 +1982,3,29,M,5269 +1982,3,30,F,5114 +1982,3,30,M,5367 +1982,3,31,F,4953 +1982,3,31,M,5318 +1982,3,99,F,4 +1982,3,99,M,4 +1982,4,1,F,4988 +1982,4,1,M,5130 +1982,4,2,F,5132 +1982,4,2,M,5396 +1982,4,3,F,4476 +1982,4,3,M,4479 +1982,4,4,F,4139 +1982,4,4,M,4293 +1982,4,5,F,4894 +1982,4,5,M,5234 +1982,4,6,F,5123 +1982,4,6,M,5497 +1982,4,7,F,4817 +1982,4,7,M,5157 +1982,4,8,F,4900 +1982,4,8,M,5258 +1982,4,9,F,4942 +1982,4,9,M,5157 +1982,4,10,F,4108 +1982,4,10,M,4277 +1982,4,11,F,3882 +1982,4,11,M,4032 +1982,4,12,F,4844 +1982,4,12,M,5147 +1982,4,13,F,5037 +1982,4,13,M,5313 +1982,4,14,F,5038 +1982,4,14,M,5195 +1982,4,15,F,5055 +1982,4,15,M,5240 +1982,4,16,F,4962 +1982,4,16,M,5313 +1982,4,17,F,4298 +1982,4,17,M,4554 +1982,4,18,F,3983 +1982,4,18,M,4212 +1982,4,19,F,4878 +1982,4,19,M,5294 +1982,4,20,F,5100 +1982,4,20,M,5503 +1982,4,21,F,4964 +1982,4,21,M,5066 +1982,4,22,F,4858 +1982,4,22,M,5100 +1982,4,23,F,4906 +1982,4,23,M,5105 +1982,4,24,F,4112 +1982,4,24,M,4382 +1982,4,25,F,3844 +1982,4,25,M,4011 +1982,4,26,F,5007 +1982,4,26,M,5362 +1982,4,27,F,5115 +1982,4,27,M,5155 +1982,4,28,F,5011 +1982,4,28,M,5251 +1982,4,29,F,4761 +1982,4,29,M,5150 +1982,4,30,F,5063 +1982,4,30,M,5333 +1982,4,99,F,5 +1982,4,99,M,8 +1982,5,1,F,4264 +1982,5,1,M,4456 +1982,5,2,F,4085 +1982,5,2,M,4322 +1982,5,3,F,5076 +1982,5,3,M,5366 +1982,5,4,F,5191 +1982,5,4,M,5441 +1982,5,5,F,5117 +1982,5,5,M,5292 +1982,5,6,F,5000 +1982,5,6,M,5372 +1982,5,7,F,5049 +1982,5,7,M,5445 +1982,5,8,F,4356 +1982,5,8,M,4399 +1982,5,9,F,4173 +1982,5,9,M,4419 +1982,5,10,F,5157 +1982,5,10,M,5459 +1982,5,11,F,5119 +1982,5,11,M,5584 +1982,5,12,F,5102 +1982,5,12,M,5326 +1982,5,13,F,4962 +1982,5,13,M,5169 +1982,5,14,F,5117 +1982,5,14,M,5380 +1982,5,15,F,4342 +1982,5,15,M,4525 +1982,5,16,F,4092 +1982,5,16,M,4327 +1982,5,17,F,5120 +1982,5,17,M,5451 +1982,5,18,F,5273 +1982,5,18,M,5527 +1982,5,19,F,5093 +1982,5,19,M,5424 +1982,5,20,F,5024 +1982,5,20,M,5376 +1982,5,21,F,5131 +1982,5,21,M,5414 +1982,5,22,F,4089 +1982,5,22,M,4516 +1982,5,23,F,4151 +1982,5,23,M,4309 +1982,5,24,F,5090 +1982,5,24,M,5316 +1982,5,25,F,5337 +1982,5,25,M,5595 +1982,5,26,F,5341 +1982,5,26,M,5513 +1982,5,27,F,5284 +1982,5,27,M,5424 +1982,5,28,F,5180 +1982,5,28,M,5503 +1982,5,29,F,4366 +1982,5,29,M,4599 +1982,5,30,F,4252 +1982,5,30,M,4467 +1982,5,31,F,4337 +1982,5,31,M,4660 +1982,6,1,F,5106 +1982,6,1,M,5392 +1982,6,2,F,5135 +1982,6,2,M,5577 +1982,6,3,F,5179 +1982,6,3,M,5456 +1982,6,4,F,5248 +1982,6,4,M,5343 +1982,6,5,F,4306 +1982,6,5,M,4614 +1982,6,6,F,4277 +1982,6,6,M,4488 +1982,6,7,F,5117 +1982,6,7,M,5266 +1982,6,8,F,5187 +1982,6,8,M,5449 +1982,6,9,F,5080 +1982,6,9,M,5273 +1982,6,10,F,5131 +1982,6,10,M,5572 +1982,6,11,F,5159 +1982,6,11,M,5470 +1982,6,12,F,4320 +1982,6,12,M,4805 +1982,6,13,F,4189 +1982,6,13,M,4319 +1982,6,14,F,5029 +1982,6,14,M,5453 +1982,6,15,F,5346 +1982,6,15,M,5597 +1982,6,16,F,5406 +1982,6,16,M,5547 +1982,6,17,F,5265 +1982,6,17,M,5466 +1982,6,18,F,5288 +1982,6,18,M,5592 +1982,6,19,F,4394 +1982,6,19,M,4554 +1982,6,20,F,4364 +1982,6,20,M,4434 +1982,6,21,F,5122 +1982,6,21,M,5664 +1982,6,22,F,5346 +1982,6,22,M,5704 +1982,6,23,F,5184 +1982,6,23,M,5574 +1982,6,24,F,5406 +1982,6,24,M,5433 +1982,6,25,F,5492 +1982,6,25,M,5524 +1982,6,26,F,4560 +1982,6,26,M,4656 +1982,6,27,F,4361 +1982,6,27,M,4621 +1982,6,28,F,5417 +1982,6,28,M,5561 +1982,6,29,F,5514 +1982,6,29,M,5942 +1982,6,30,F,5303 +1982,6,30,M,5659 +1982,6,99,M,2 +1982,7,1,F,5394 +1982,7,1,M,5530 +1982,7,2,F,5287 +1982,7,2,M,5606 +1982,7,3,F,4444 +1982,7,3,M,4849 +1982,7,4,F,4387 +1982,7,4,M,4649 +1982,7,5,F,4445 +1982,7,5,M,4533 +1982,7,6,F,5492 +1982,7,6,M,5679 +1982,7,7,F,5761 +1982,7,7,M,5981 +1982,7,8,F,5691 +1982,7,8,M,5963 +1982,7,9,F,5511 +1982,7,9,M,5801 +1982,7,10,F,4760 +1982,7,10,M,4831 +1982,7,11,F,4476 +1982,7,11,M,4689 +1982,7,12,F,5216 +1982,7,12,M,5780 +1982,7,13,F,5318 +1982,7,13,M,5818 +1982,7,14,F,5427 +1982,7,14,M,5668 +1982,7,15,F,5392 +1982,7,15,M,5826 +1982,7,16,F,5504 +1982,7,16,M,5835 +1982,7,17,F,4686 +1982,7,17,M,4930 +1982,7,18,F,4633 +1982,7,18,M,4741 +1982,7,19,F,5405 +1982,7,19,M,5634 +1982,7,20,F,5755 +1982,7,20,M,5796 +1982,7,21,F,5506 +1982,7,21,M,5736 +1982,7,22,F,5436 +1982,7,22,M,5568 +1982,7,23,F,5496 +1982,7,23,M,5851 +1982,7,24,F,4612 +1982,7,24,M,4996 +1982,7,25,F,4447 +1982,7,25,M,4649 +1982,7,26,F,5400 +1982,7,26,M,5641 +1982,7,27,F,5518 +1982,7,27,M,5956 +1982,7,28,F,5450 +1982,7,28,M,5785 +1982,7,29,F,5444 +1982,7,29,M,5629 +1982,7,30,F,5406 +1982,7,30,M,5710 +1982,7,31,F,4587 +1982,7,31,M,5002 +1982,7,99,F,6 +1982,7,99,M,6 +1982,8,1,F,4479 +1982,8,1,M,4714 +1982,8,2,F,5282 +1982,8,2,M,5674 +1982,8,3,F,5618 +1982,8,3,M,5897 +1982,8,4,F,5459 +1982,8,4,M,5794 +1982,8,5,F,5504 +1982,8,5,M,5692 +1982,8,6,F,5422 +1982,8,6,M,5592 +1982,8,7,F,4582 +1982,8,7,M,4767 +1982,8,8,F,4559 +1982,8,8,M,4639 +1982,8,9,F,5250 +1982,8,9,M,5653 +1982,8,10,F,5474 +1982,8,10,M,5909 +1982,8,11,F,5398 +1982,8,11,M,5706 +1982,8,12,F,5465 +1982,8,12,M,5730 +1982,8,13,F,5205 +1982,8,13,M,5473 +1982,8,14,F,4630 +1982,8,14,M,4814 +1982,8,15,F,4527 +1982,8,15,M,4688 +1982,8,16,F,5581 +1982,8,16,M,5620 +1982,8,17,F,5601 +1982,8,17,M,5888 +1982,8,18,F,5439 +1982,8,18,M,5827 +1982,8,19,F,5499 +1982,8,19,M,5655 +1982,8,20,F,5554 +1982,8,20,M,5831 +1982,8,21,F,4661 +1982,8,21,M,4941 +1982,8,22,F,4461 +1982,8,22,M,4637 +1982,8,23,F,5320 +1982,8,23,M,5624 +1982,8,24,F,5587 +1982,8,24,M,5990 +1982,8,25,F,5380 +1982,8,25,M,5773 +1982,8,26,F,5458 +1982,8,26,M,5568 +1982,8,27,F,5531 +1982,8,27,M,5735 +1982,8,28,F,4610 +1982,8,28,M,4874 +1982,8,29,F,4390 +1982,8,29,M,4510 +1982,8,30,F,5306 +1982,8,30,M,5657 +1982,8,31,F,5680 +1982,8,31,M,5825 +1982,8,99,F,2 +1982,8,99,M,9 +1982,9,1,F,5380 +1982,9,1,M,5738 +1982,9,2,F,5338 +1982,9,2,M,5743 +1982,9,3,F,5532 +1982,9,3,M,5943 +1982,9,4,F,4689 +1982,9,4,M,4890 +1982,9,5,F,4435 +1982,9,5,M,4723 +1982,9,6,F,4472 +1982,9,6,M,4790 +1982,9,7,F,5531 +1982,9,7,M,5811 +1982,9,8,F,5457 +1982,9,8,M,5998 +1982,9,9,F,5705 +1982,9,9,M,5690 +1982,9,10,F,5830 +1982,9,10,M,6087 +1982,9,11,F,4665 +1982,9,11,M,5030 +1982,9,12,F,4717 +1982,9,12,M,4943 +1982,9,13,F,5463 +1982,9,13,M,5880 +1982,9,14,F,5628 +1982,9,14,M,6097 +1982,9,15,F,5593 +1982,9,15,M,5766 +1982,9,16,F,5612 +1982,9,16,M,5966 +1982,9,17,F,5872 +1982,9,17,M,5864 +1982,9,18,F,4705 +1982,9,18,M,4872 +1982,9,19,F,4639 +1982,9,19,M,4913 +1982,9,20,F,5674 +1982,9,20,M,5922 +1982,9,21,F,5666 +1982,9,21,M,6125 +1982,9,22,F,5531 +1982,9,22,M,5999 +1982,9,23,F,5659 +1982,9,23,M,5892 +1982,9,24,F,5596 +1982,9,24,M,5884 +1982,9,25,F,4715 +1982,9,25,M,5077 +1982,9,26,F,4560 +1982,9,26,M,4865 +1982,9,27,F,5664 +1982,9,27,M,5874 +1982,9,28,F,5674 +1982,9,28,M,6000 +1982,9,29,F,5665 +1982,9,29,M,5737 +1982,9,30,F,5486 +1982,9,30,M,5783 +1982,9,99,F,7 +1982,10,1,F,5567 +1982,10,1,M,5730 +1982,10,2,F,4726 +1982,10,2,M,4877 +1982,10,3,F,4481 +1982,10,3,M,4707 +1982,10,4,F,5405 +1982,10,4,M,5771 +1982,10,5,F,5450 +1982,10,5,M,5755 +1982,10,6,F,5383 +1982,10,6,M,5760 +1982,10,7,F,5297 +1982,10,7,M,5648 +1982,10,8,F,5379 +1982,10,8,M,5686 +1982,10,9,F,4543 +1982,10,9,M,4653 +1982,10,10,F,4323 +1982,10,10,M,4556 +1982,10,11,F,5027 +1982,10,11,M,5300 +1982,10,12,F,5285 +1982,10,12,M,5704 +1982,10,13,F,5031 +1982,10,13,M,5285 +1982,10,14,F,5272 +1982,10,14,M,5450 +1982,10,15,F,5073 +1982,10,15,M,5437 +1982,10,16,F,4393 +1982,10,16,M,4501 +1982,10,17,F,4219 +1982,10,17,M,4363 +1982,10,18,F,5086 +1982,10,18,M,5331 +1982,10,19,F,5319 +1982,10,19,M,5626 +1982,10,20,F,5041 +1982,10,20,M,5399 +1982,10,21,F,5114 +1982,10,21,M,5330 +1982,10,22,F,5110 +1982,10,22,M,5322 +1982,10,23,F,4311 +1982,10,23,M,4669 +1982,10,24,F,4198 +1982,10,24,M,4457 +1982,10,25,F,5070 +1982,10,25,M,5271 +1982,10,26,F,5297 +1982,10,26,M,5384 +1982,10,27,F,5093 +1982,10,27,M,5279 +1982,10,28,F,5204 +1982,10,28,M,5299 +1982,10,29,F,5132 +1982,10,29,M,5382 +1982,10,30,F,4234 +1982,10,30,M,4489 +1982,10,31,F,4413 +1982,10,31,M,4463 +1982,10,99,F,4 +1982,10,99,M,4 +1982,11,1,F,5085 +1982,11,1,M,5265 +1982,11,2,F,5214 +1982,11,2,M,5453 +1982,11,3,F,4999 +1982,11,3,M,5266 +1982,11,4,F,5069 +1982,11,4,M,5380 +1982,11,5,F,5041 +1982,11,5,M,5400 +1982,11,6,F,4251 +1982,11,6,M,4507 +1982,11,7,F,4222 +1982,11,7,M,4435 +1982,11,8,F,5175 +1982,11,8,M,5254 +1982,11,9,F,5213 +1982,11,9,M,5524 +1982,11,10,F,5154 +1982,11,10,M,5424 +1982,11,11,F,5092 +1982,11,11,M,5326 +1982,11,12,F,5219 +1982,11,12,M,5271 +1982,11,13,F,4342 +1982,11,13,M,4484 +1982,11,14,F,4033 +1982,11,14,M,4075 +1982,11,15,F,4983 +1982,11,15,M,5431 +1982,11,16,F,5015 +1982,11,16,M,5427 +1982,11,17,F,5076 +1982,11,17,M,5285 +1982,11,18,F,5079 +1982,11,18,M,5315 +1982,11,19,F,5156 +1982,11,19,M,5465 +1982,11,20,F,4357 +1982,11,20,M,4543 +1982,11,21,F,4100 +1982,11,21,M,4334 +1982,11,22,F,5177 +1982,11,22,M,5304 +1982,11,23,F,5182 +1982,11,23,M,5628 +1982,11,24,F,4945 +1982,11,24,M,5362 +1982,11,25,F,3918 +1982,11,25,M,4127 +1982,11,26,F,4480 +1982,11,26,M,4759 +1982,11,27,F,4202 +1982,11,27,M,4356 +1982,11,28,F,4177 +1982,11,28,M,4351 +1982,11,29,F,5085 +1982,11,29,M,5455 +1982,11,30,F,5461 +1982,11,30,M,5613 +1982,11,99,F,2 +1982,11,99,M,4 +1982,12,1,F,5136 +1982,12,1,M,5296 +1982,12,2,F,4938 +1982,12,2,M,5118 +1982,12,3,F,5007 +1982,12,3,M,5132 +1982,12,4,F,4144 +1982,12,4,M,4451 +1982,12,5,F,4249 +1982,12,5,M,4195 +1982,12,6,F,4943 +1982,12,6,M,5123 +1982,12,7,F,4940 +1982,12,7,M,5287 +1982,12,8,F,4904 +1982,12,8,M,5209 +1982,12,9,F,4833 +1982,12,9,M,5087 +1982,12,10,F,4870 +1982,12,10,M,5146 +1982,12,11,F,4101 +1982,12,11,M,4504 +1982,12,12,F,4013 +1982,12,12,M,4262 +1982,12,13,F,4891 +1982,12,13,M,5124 +1982,12,14,F,5213 +1982,12,14,M,5487 +1982,12,15,F,5045 +1982,12,15,M,5343 +1982,12,16,F,5181 +1982,12,16,M,5451 +1982,12,17,F,5098 +1982,12,17,M,5521 +1982,12,18,F,4220 +1982,12,18,M,4282 +1982,12,19,F,4113 +1982,12,19,M,4281 +1982,12,20,F,5226 +1982,12,20,M,5455 +1982,12,21,F,5146 +1982,12,21,M,5515 +1982,12,22,F,4723 +1982,12,22,M,5178 +1982,12,23,F,4552 +1982,12,23,M,4698 +1982,12,24,F,4076 +1982,12,24,M,4110 +1982,12,25,F,3865 +1982,12,25,M,3960 +1982,12,26,F,4017 +1982,12,26,M,3936 +1982,12,27,F,4971 +1982,12,27,M,5256 +1982,12,28,F,5187 +1982,12,28,M,5486 +1982,12,29,F,5255 +1982,12,29,M,5586 +1982,12,30,F,5373 +1982,12,30,M,5513 +1982,12,31,F,4477 +1982,12,31,M,4800 +1982,12,99,M,4 +1983,1,1,F,4000 +1983,1,1,M,4174 +1983,1,2,F,3924 +1983,1,2,M,4161 +1983,1,3,F,4706 +1983,1,3,M,4817 +1983,1,4,F,4937 +1983,1,4,M,5157 +1983,1,5,F,4893 +1983,1,5,M,5073 +1983,1,6,F,4905 +1983,1,6,M,5085 +1983,1,7,F,4862 +1983,1,7,M,5085 +1983,1,8,F,4105 +1983,1,8,M,4420 +1983,1,9,F,4090 +1983,1,9,M,4197 +1983,1,10,F,4805 +1983,1,10,M,5125 +1983,1,11,F,4935 +1983,1,11,M,5402 +1983,1,12,F,4971 +1983,1,12,M,5302 +1983,1,13,F,4939 +1983,1,13,M,5251 +1983,1,14,F,5006 +1983,1,14,M,5238 +1983,1,15,F,4180 +1983,1,15,M,4604 +1983,1,16,F,4071 +1983,1,16,M,4311 +1983,1,17,F,5003 +1983,1,17,M,5128 +1983,1,18,F,5073 +1983,1,18,M,5409 +1983,1,19,F,4829 +1983,1,19,M,5121 +1983,1,20,F,4951 +1983,1,20,M,5203 +1983,1,21,F,5006 +1983,1,21,M,5300 +1983,1,22,F,4334 +1983,1,22,M,4464 +1983,1,23,F,4208 +1983,1,23,M,4392 +1983,1,24,F,4954 +1983,1,24,M,5137 +1983,1,25,F,5135 +1983,1,25,M,5233 +1983,1,26,F,4914 +1983,1,26,M,5358 +1983,1,27,F,5082 +1983,1,27,M,5220 +1983,1,28,F,4928 +1983,1,28,M,5282 +1983,1,29,F,4391 +1983,1,29,M,4366 +1983,1,30,F,4244 +1983,1,30,M,4467 +1983,1,31,F,5034 +1983,1,31,M,5114 +1983,1,99,F,5 +1983,1,99,M,2 +1983,2,1,F,5177 +1983,2,1,M,5402 +1983,2,2,F,4939 +1983,2,2,M,5221 +1983,2,3,F,5055 +1983,2,3,M,5341 +1983,2,4,F,4937 +1983,2,4,M,5259 +1983,2,5,F,4212 +1983,2,5,M,4267 +1983,2,6,F,4061 +1983,2,6,M,4434 +1983,2,7,F,4973 +1983,2,7,M,5259 +1983,2,8,F,5181 +1983,2,8,M,5422 +1983,2,9,F,4859 +1983,2,9,M,5268 +1983,2,10,F,5027 +1983,2,10,M,5234 +1983,2,11,F,5192 +1983,2,11,M,5309 +1983,2,12,F,4450 +1983,2,12,M,4379 +1983,2,13,F,4217 +1983,2,13,M,4341 +1983,2,14,F,5208 +1983,2,14,M,5390 +1983,2,15,F,5080 +1983,2,15,M,5492 +1983,2,16,F,5181 +1983,2,16,M,5338 +1983,2,17,F,5087 +1983,2,17,M,5422 +1983,2,18,F,5102 +1983,2,18,M,5325 +1983,2,19,F,4294 +1983,2,19,M,4552 +1983,2,20,F,4181 +1983,2,20,M,4341 +1983,2,21,F,4839 +1983,2,21,M,5181 +1983,2,22,F,5154 +1983,2,22,M,5317 +1983,2,23,F,5272 +1983,2,23,M,5404 +1983,2,24,F,5175 +1983,2,24,M,5435 +1983,2,25,F,5122 +1983,2,25,M,5376 +1983,2,26,F,4249 +1983,2,26,M,4620 +1983,2,27,F,4132 +1983,2,27,M,4328 +1983,2,28,F,4936 +1983,2,28,M,5318 +1983,2,99,F,3 +1983,2,99,M,6 +1983,3,1,F,5275 +1983,3,1,M,5394 +1983,3,2,F,5095 +1983,3,2,M,5579 +1983,3,3,F,5256 +1983,3,3,M,5306 +1983,3,4,F,5187 +1983,3,4,M,5458 +1983,3,5,F,4361 +1983,3,5,M,4674 +1983,3,6,F,4194 +1983,3,6,M,4376 +1983,3,7,F,5012 +1983,3,7,M,5341 +1983,3,8,F,5267 +1983,3,8,M,5435 +1983,3,9,F,5040 +1983,3,9,M,5282 +1983,3,10,F,5051 +1983,3,10,M,5297 +1983,3,11,F,5154 +1983,3,11,M,5197 +1983,3,12,F,4197 +1983,3,12,M,4557 +1983,3,13,F,4135 +1983,3,13,M,4297 +1983,3,14,F,5039 +1983,3,14,M,5395 +1983,3,15,F,5242 +1983,3,15,M,5597 +1983,3,16,F,4926 +1983,3,16,M,5325 +1983,3,17,F,5129 +1983,3,17,M,5395 +1983,3,18,F,5288 +1983,3,18,M,5539 +1983,3,19,F,4309 +1983,3,19,M,4467 +1983,3,20,F,4117 +1983,3,20,M,4407 +1983,3,21,F,5109 +1983,3,21,M,5324 +1983,3,22,F,5270 +1983,3,22,M,5422 +1983,3,23,F,4929 +1983,3,23,M,5301 +1983,3,24,F,5065 +1983,3,24,M,5150 +1983,3,25,F,5146 +1983,3,25,M,5366 +1983,3,26,F,4249 +1983,3,26,M,4487 +1983,3,27,F,4110 +1983,3,27,M,4365 +1983,3,28,F,4929 +1983,3,28,M,5322 +1983,3,29,F,5255 +1983,3,29,M,5556 +1983,3,30,F,5265 +1983,3,30,M,5384 +1983,3,31,F,5197 +1983,3,31,M,5416 +1983,3,99,F,4 +1983,3,99,M,6 +1983,4,1,F,4836 +1983,4,1,M,5146 +1983,4,2,F,4210 +1983,4,2,M,4562 +1983,4,3,F,4027 +1983,4,3,M,4327 +1983,4,4,F,4914 +1983,4,4,M,5293 +1983,4,5,F,5222 +1983,4,5,M,5537 +1983,4,6,F,5163 +1983,4,6,M,5285 +1983,4,7,F,5138 +1983,4,7,M,5521 +1983,4,8,F,5112 +1983,4,8,M,5446 +1983,4,9,F,4295 +1983,4,9,M,4490 +1983,4,10,F,4189 +1983,4,10,M,4296 +1983,4,11,F,4883 +1983,4,11,M,5415 +1983,4,12,F,5075 +1983,4,12,M,5499 +1983,4,13,F,4882 +1983,4,13,M,5230 +1983,4,14,F,4927 +1983,4,14,M,5269 +1983,4,15,F,4983 +1983,4,15,M,5356 +1983,4,16,F,4249 +1983,4,16,M,4374 +1983,4,17,F,4081 +1983,4,17,M,4283 +1983,4,18,F,5019 +1983,4,18,M,5198 +1983,4,19,F,5063 +1983,4,19,M,5346 +1983,4,20,F,5030 +1983,4,20,M,5341 +1983,4,21,F,4934 +1983,4,21,M,5267 +1983,4,22,F,5012 +1983,4,22,M,5256 +1983,4,23,F,4288 +1983,4,23,M,4416 +1983,4,24,F,3763 +1983,4,24,M,4187 +1983,4,25,F,5045 +1983,4,25,M,5326 +1983,4,26,F,5211 +1983,4,26,M,5381 +1983,4,27,F,5192 +1983,4,27,M,5220 +1983,4,28,F,5017 +1983,4,28,M,5418 +1983,4,29,F,5014 +1983,4,29,M,5265 +1983,4,30,F,4099 +1983,4,30,M,4380 +1983,4,99,F,7 +1983,4,99,M,11 +1983,5,1,F,3937 +1983,5,1,M,4233 +1983,5,2,F,4889 +1983,5,2,M,5225 +1983,5,3,F,5256 +1983,5,3,M,5381 +1983,5,4,F,5010 +1983,5,4,M,5206 +1983,5,5,F,5127 +1983,5,5,M,5378 +1983,5,6,F,5018 +1983,5,6,M,5259 +1983,5,7,F,4188 +1983,5,7,M,4461 +1983,5,8,F,4014 +1983,5,8,M,4398 +1983,5,9,F,4850 +1983,5,9,M,5132 +1983,5,10,F,5001 +1983,5,10,M,5327 +1983,5,11,F,4942 +1983,5,11,M,5232 +1983,5,12,F,5037 +1983,5,12,M,5269 +1983,5,13,F,4974 +1983,5,13,M,5116 +1983,5,14,F,4198 +1983,5,14,M,4543 +1983,5,15,F,4131 +1983,5,15,M,4333 +1983,5,16,F,5194 +1983,5,16,M,5230 +1983,5,17,F,5171 +1983,5,17,M,5230 +1983,5,18,F,4980 +1983,5,18,M,5216 +1983,5,19,F,5101 +1983,5,19,M,5405 +1983,5,20,F,5129 +1983,5,20,M,5384 +1983,5,21,F,4407 +1983,5,21,M,4543 +1983,5,22,F,4114 +1983,5,22,M,4254 +1983,5,23,F,5080 +1983,5,23,M,5339 +1983,5,24,F,5299 +1983,5,24,M,5672 +1983,5,25,F,5094 +1983,5,25,M,5480 +1983,5,26,F,5096 +1983,5,26,M,5262 +1983,5,27,F,5074 +1983,5,27,M,5402 +1983,5,28,F,4207 +1983,5,28,M,4550 +1983,5,29,F,4222 +1983,5,29,M,4325 +1983,5,30,F,4231 +1983,5,30,M,4456 +1983,5,31,F,4972 +1983,5,31,M,5348 +1983,5,99,F,4 +1983,6,1,F,5265 +1983,6,1,M,5535 +1983,6,2,F,5136 +1983,6,2,M,5380 +1983,6,3,F,5158 +1983,6,3,M,5506 +1983,6,4,F,4408 +1983,6,4,M,4604 +1983,6,5,F,4215 +1983,6,5,M,4359 +1983,6,6,F,5172 +1983,6,6,M,5199 +1983,6,7,F,5054 +1983,6,7,M,5579 +1983,6,8,F,5104 +1983,6,8,M,5271 +1983,6,9,F,5240 +1983,6,9,M,5259 +1983,6,10,F,5294 +1983,6,10,M,5358 +1983,6,11,F,4219 +1983,6,11,M,4738 +1983,6,12,F,4182 +1983,6,12,M,4365 +1983,6,13,F,5004 +1983,6,13,M,5460 +1983,6,14,F,5261 +1983,6,14,M,5725 +1983,6,15,F,5023 +1983,6,15,M,5399 +1983,6,16,F,5127 +1983,6,16,M,5400 +1983,6,17,F,5213 +1983,6,17,M,5572 +1983,6,18,F,4206 +1983,6,18,M,4503 +1983,6,19,F,4109 +1983,6,19,M,4480 +1983,6,20,F,4998 +1983,6,20,M,5500 +1983,6,21,F,5236 +1983,6,21,M,5515 +1983,6,22,F,4965 +1983,6,22,M,5453 +1983,6,23,F,5218 +1983,6,23,M,5572 +1983,6,24,F,5086 +1983,6,24,M,5602 +1983,6,25,F,4408 +1983,6,25,M,4660 +1983,6,26,F,4212 +1983,6,26,M,4449 +1983,6,27,F,5139 +1983,6,27,M,5495 +1983,6,28,F,5387 +1983,6,28,M,5701 +1983,6,29,F,5227 +1983,6,29,M,5557 +1983,6,30,F,5161 +1983,6,30,M,5599 +1983,6,99,F,5 +1983,6,99,M,9 +1983,7,1,F,5338 +1983,7,1,M,5575 +1983,7,2,F,4417 +1983,7,2,M,4658 +1983,7,3,F,4254 +1983,7,3,M,4394 +1983,7,4,F,4287 +1983,7,4,M,4656 +1983,7,5,F,5110 +1983,7,5,M,5381 +1983,7,6,F,5406 +1983,7,6,M,5713 +1983,7,7,F,5512 +1983,7,7,M,5618 +1983,7,8,F,5254 +1983,7,8,M,5617 +1983,7,9,F,4383 +1983,7,9,M,4672 +1983,7,10,F,4234 +1983,7,10,M,4604 +1983,7,11,F,5189 +1983,7,11,M,5475 +1983,7,12,F,5518 +1983,7,12,M,5736 +1983,7,13,F,5374 +1983,7,13,M,5663 +1983,7,14,F,5311 +1983,7,14,M,5725 +1983,7,15,F,5437 +1983,7,15,M,5729 +1983,7,16,F,4495 +1983,7,16,M,4725 +1983,7,17,F,4344 +1983,7,17,M,4596 +1983,7,18,F,5248 +1983,7,18,M,5519 +1983,7,19,F,5455 +1983,7,19,M,5585 +1983,7,20,F,5379 +1983,7,20,M,5720 +1983,7,21,F,5292 +1983,7,21,M,5780 +1983,7,22,F,5438 +1983,7,22,M,5605 +1983,7,23,F,4466 +1983,7,23,M,4689 +1983,7,24,F,4412 +1983,7,24,M,4581 +1983,7,25,F,5154 +1983,7,25,M,5499 +1983,7,26,F,5400 +1983,7,26,M,5633 +1983,7,27,F,5273 +1983,7,27,M,5566 +1983,7,28,F,5313 +1983,7,28,M,5724 +1983,7,29,F,5334 +1983,7,29,M,5691 +1983,7,30,F,4512 +1983,7,30,M,4652 +1983,7,31,F,4273 +1983,7,31,M,4697 +1983,7,99,F,3 +1983,7,99,M,12 +1983,8,1,F,5149 +1983,8,1,M,5461 +1983,8,2,F,5405 +1983,8,2,M,5641 +1983,8,3,F,5366 +1983,8,3,M,5587 +1983,8,4,F,5161 +1983,8,4,M,5559 +1983,8,5,F,5357 +1983,8,5,M,5659 +1983,8,6,F,4519 +1983,8,6,M,4713 +1983,8,7,F,4579 +1983,8,7,M,4677 +1983,8,8,F,5167 +1983,8,8,M,5628 +1983,8,9,F,5451 +1983,8,9,M,5688 +1983,8,10,F,5434 +1983,8,10,M,5588 +1983,8,11,F,5247 +1983,8,11,M,5542 +1983,8,12,F,5254 +1983,8,12,M,5712 +1983,8,13,F,4458 +1983,8,13,M,4700 +1983,8,14,F,4297 +1983,8,14,M,4533 +1983,8,15,F,5299 +1983,8,15,M,5364 +1983,8,16,F,5519 +1983,8,16,M,5751 +1983,8,17,F,5412 +1983,8,17,M,5600 +1983,8,18,F,5407 +1983,8,18,M,5728 +1983,8,19,F,5500 +1983,8,19,M,5719 +1983,8,20,F,4464 +1983,8,20,M,4796 +1983,8,21,F,4359 +1983,8,21,M,4783 +1983,8,22,F,5175 +1983,8,22,M,5458 +1983,8,23,F,5478 +1983,8,23,M,5675 +1983,8,24,F,5366 +1983,8,24,M,5449 +1983,8,25,F,5342 +1983,8,25,M,5382 +1983,8,26,F,5281 +1983,8,26,M,5558 +1983,8,27,F,4463 +1983,8,27,M,4779 +1983,8,28,F,4371 +1983,8,28,M,4638 +1983,8,29,F,5270 +1983,8,29,M,5542 +1983,8,30,F,5454 +1983,8,30,M,5677 +1983,8,31,F,5253 +1983,8,31,M,5552 +1983,8,99,F,2 +1983,8,99,M,2 +1983,9,1,F,5238 +1983,9,1,M,5509 +1983,9,2,F,5261 +1983,9,2,M,5646 +1983,9,3,F,4554 +1983,9,3,M,4597 +1983,9,4,F,4273 +1983,9,4,M,4533 +1983,9,5,F,4290 +1983,9,5,M,4459 +1983,9,6,F,5302 +1983,9,6,M,5693 +1983,9,7,F,5485 +1983,9,7,M,5863 +1983,9,8,F,5420 +1983,9,8,M,5632 +1983,9,9,F,5337 +1983,9,9,M,5762 +1983,9,10,F,4590 +1983,9,10,M,4946 +1983,9,11,F,4405 +1983,9,11,M,4643 +1983,9,12,F,5253 +1983,9,12,M,5645 +1983,9,13,F,5374 +1983,9,13,M,5842 +1983,9,14,F,5469 +1983,9,14,M,5714 +1983,9,15,F,5432 +1983,9,15,M,5544 +1983,9,16,F,5352 +1983,9,16,M,5596 +1983,9,17,F,4562 +1983,9,17,M,4874 +1983,9,18,F,4501 +1983,9,18,M,4826 +1983,9,19,F,5416 +1983,9,19,M,5764 +1983,9,20,F,5742 +1983,9,20,M,5893 +1983,9,21,F,5550 +1983,9,21,M,5726 +1983,9,22,F,5392 +1983,9,22,M,5673 +1983,9,23,F,5488 +1983,9,23,M,5689 +1983,9,24,F,4477 +1983,9,24,M,4697 +1983,9,25,F,4305 +1983,9,25,M,4516 +1983,9,26,F,5458 +1983,9,26,M,5500 +1983,9,27,F,5573 +1983,9,27,M,5793 +1983,9,28,F,5382 +1983,9,28,M,5571 +1983,9,29,F,5301 +1983,9,29,M,5588 +1983,9,30,F,5357 +1983,9,30,M,5557 +1983,9,99,M,2 +1983,10,1,F,4504 +1983,10,1,M,4698 +1983,10,2,F,4319 +1983,10,2,M,4574 +1983,10,3,F,5267 +1983,10,3,M,5539 +1983,10,4,F,5476 +1983,10,4,M,5706 +1983,10,5,F,5306 +1983,10,5,M,5456 +1983,10,6,F,5293 +1983,10,6,M,5382 +1983,10,7,F,5253 +1983,10,7,M,5500 +1983,10,8,F,4355 +1983,10,8,M,4616 +1983,10,9,F,4208 +1983,10,9,M,4343 +1983,10,10,F,5051 +1983,10,10,M,5222 +1983,10,11,F,5141 +1983,10,11,M,5515 +1983,10,12,F,5247 +1983,10,12,M,5398 +1983,10,13,F,5005 +1983,10,13,M,5315 +1983,10,14,F,5223 +1983,10,14,M,5387 +1983,10,15,F,4105 +1983,10,15,M,4465 +1983,10,16,F,4199 +1983,10,16,M,4306 +1983,10,17,F,5047 +1983,10,17,M,5255 +1983,10,18,F,5071 +1983,10,18,M,5414 +1983,10,19,F,4952 +1983,10,19,M,5272 +1983,10,20,F,5132 +1983,10,20,M,5260 +1983,10,21,F,4914 +1983,10,21,M,5278 +1983,10,22,F,4154 +1983,10,22,M,4472 +1983,10,23,F,4005 +1983,10,23,M,4229 +1983,10,24,F,4953 +1983,10,24,M,5272 +1983,10,25,F,5212 +1983,10,25,M,5412 +1983,10,26,F,4950 +1983,10,26,M,5251 +1983,10,27,F,4974 +1983,10,27,M,5286 +1983,10,28,F,4978 +1983,10,28,M,5328 +1983,10,29,F,4123 +1983,10,29,M,4381 +1983,10,30,F,4150 +1983,10,30,M,4346 +1983,10,31,F,4738 +1983,10,31,M,4941 +1983,10,99,M,3 +1983,11,1,F,5031 +1983,11,1,M,5248 +1983,11,2,F,4966 +1983,11,2,M,5116 +1983,11,3,F,5114 +1983,11,3,M,5139 +1983,11,4,F,5074 +1983,11,4,M,5192 +1983,11,5,F,4257 +1983,11,5,M,4386 +1983,11,6,F,4015 +1983,11,6,M,4203 +1983,11,7,F,5013 +1983,11,7,M,5227 +1983,11,8,F,4968 +1983,11,8,M,5492 +1983,11,9,F,4905 +1983,11,9,M,5277 +1983,11,10,F,5110 +1983,11,10,M,5154 +1983,11,11,F,5005 +1983,11,11,M,5104 +1983,11,12,F,4094 +1983,11,12,M,4336 +1983,11,13,F,4135 +1983,11,13,M,4311 +1983,11,14,F,5024 +1983,11,14,M,5198 +1983,11,15,F,5200 +1983,11,15,M,5483 +1983,11,16,F,4976 +1983,11,16,M,5279 +1983,11,17,F,4889 +1983,11,17,M,5331 +1983,11,18,F,5047 +1983,11,18,M,5437 +1983,11,19,F,4186 +1983,11,19,M,4495 +1983,11,20,F,4108 +1983,11,20,M,4210 +1983,11,21,F,5080 +1983,11,21,M,5399 +1983,11,22,F,5297 +1983,11,22,M,5571 +1983,11,23,F,5036 +1983,11,23,M,5305 +1983,11,24,F,4122 +1983,11,24,M,4194 +1983,11,25,F,4585 +1983,11,25,M,4864 +1983,11,26,F,4035 +1983,11,26,M,4198 +1983,11,27,F,3994 +1983,11,27,M,4230 +1983,11,28,F,4929 +1983,11,28,M,5249 +1983,11,29,F,5185 +1983,11,29,M,5341 +1983,11,30,F,4912 +1983,11,30,M,5009 +1983,11,99,F,2 +1983,12,1,F,5089 +1983,12,1,M,5208 +1983,12,2,F,5013 +1983,12,2,M,5056 +1983,12,3,F,4063 +1983,12,3,M,4212 +1983,12,4,F,3927 +1983,12,4,M,4047 +1983,12,5,F,4990 +1983,12,5,M,5188 +1983,12,6,F,5015 +1983,12,6,M,5264 +1983,12,7,F,4905 +1983,12,7,M,5226 +1983,12,8,F,4937 +1983,12,8,M,5201 +1983,12,9,F,5002 +1983,12,9,M,5130 +1983,12,10,F,4148 +1983,12,10,M,4248 +1983,12,11,F,4067 +1983,12,11,M,4249 +1983,12,12,F,4991 +1983,12,12,M,5269 +1983,12,13,F,5188 +1983,12,13,M,5239 +1983,12,14,F,4986 +1983,12,14,M,5288 +1983,12,15,F,5066 +1983,12,15,M,5398 +1983,12,16,F,5108 +1983,12,16,M,5426 +1983,12,17,F,4078 +1983,12,17,M,4221 +1983,12,18,F,3942 +1983,12,18,M,4228 +1983,12,19,F,5190 +1983,12,19,M,5571 +1983,12,20,F,5419 +1983,12,20,M,5566 +1983,12,21,F,4909 +1983,12,21,M,5317 +1983,12,22,F,4625 +1983,12,22,M,4882 +1983,12,23,F,4486 +1983,12,23,M,4549 +1983,12,24,F,3948 +1983,12,24,M,4094 +1983,12,25,F,3697 +1983,12,25,M,3948 +1983,12,26,F,4029 +1983,12,26,M,4207 +1983,12,27,F,5267 +1983,12,27,M,5350 +1983,12,28,F,5478 +1983,12,28,M,5786 +1983,12,29,F,5274 +1983,12,29,M,5609 +1983,12,30,F,5328 +1983,12,30,M,5673 +1983,12,31,F,4144 +1983,12,31,M,4418 +1983,12,99,F,2 +1984,1,1,F,3921 +1984,1,1,M,4092 +1984,1,2,F,3910 +1984,1,2,M,4095 +1984,1,3,F,4779 +1984,1,3,M,4883 +1984,1,4,F,4863 +1984,1,4,M,5060 +1984,1,5,F,4860 +1984,1,5,M,5144 +1984,1,6,F,5012 +1984,1,6,M,5105 +1984,1,7,F,4146 +1984,1,7,M,4351 +1984,1,8,F,4026 +1984,1,8,M,4204 +1984,1,9,F,4712 +1984,1,9,M,4978 +1984,1,10,F,4852 +1984,1,10,M,5263 +1984,1,11,F,4769 +1984,1,11,M,5045 +1984,1,12,F,4767 +1984,1,12,M,5031 +1984,1,13,F,4826 +1984,1,13,M,5012 +1984,1,14,F,4172 +1984,1,14,M,4332 +1984,1,15,F,3937 +1984,1,15,M,4171 +1984,1,16,F,4867 +1984,1,16,M,5070 +1984,1,17,F,4915 +1984,1,17,M,5179 +1984,1,18,F,4888 +1984,1,18,M,5246 +1984,1,19,F,4727 +1984,1,19,M,5167 +1984,1,20,F,4975 +1984,1,20,M,5122 +1984,1,21,F,4078 +1984,1,21,M,4257 +1984,1,22,F,3906 +1984,1,22,M,4166 +1984,1,23,F,4881 +1984,1,23,M,5044 +1984,1,24,F,5038 +1984,1,24,M,5247 +1984,1,25,F,4960 +1984,1,25,M,5294 +1984,1,26,F,5043 +1984,1,26,M,5101 +1984,1,27,F,5047 +1984,1,27,M,5240 +1984,1,28,F,4122 +1984,1,28,M,4428 +1984,1,29,F,4123 +1984,1,29,M,4068 +1984,1,30,F,4857 +1984,1,30,M,5023 +1984,1,31,F,4975 +1984,1,31,M,5154 +1984,1,99,F,2 +1984,1,99,M,3 +1984,2,1,F,4921 +1984,2,1,M,5118 +1984,2,2,F,4992 +1984,2,2,M,5135 +1984,2,3,F,4932 +1984,2,3,M,5267 +1984,2,4,F,4145 +1984,2,4,M,4369 +1984,2,5,F,4019 +1984,2,5,M,4257 +1984,2,6,F,4874 +1984,2,6,M,5080 +1984,2,7,F,4952 +1984,2,7,M,5131 +1984,2,8,F,4973 +1984,2,8,M,5154 +1984,2,9,F,4893 +1984,2,9,M,5108 +1984,2,10,F,5140 +1984,2,10,M,5444 +1984,2,11,F,4262 +1984,2,11,M,4485 +1984,2,12,F,4102 +1984,2,12,M,4254 +1984,2,13,F,4837 +1984,2,13,M,5140 +1984,2,14,F,5518 +1984,2,14,M,5747 +1984,2,15,F,4935 +1984,2,15,M,5278 +1984,2,16,F,5024 +1984,2,16,M,5229 +1984,2,17,F,4999 +1984,2,17,M,5230 +1984,2,18,F,4344 +1984,2,18,M,4527 +1984,2,19,F,4100 +1984,2,19,M,4277 +1984,2,20,F,4852 +1984,2,20,M,4963 +1984,2,21,F,4959 +1984,2,21,M,5230 +1984,2,22,F,5004 +1984,2,22,M,5299 +1984,2,23,F,4770 +1984,2,23,M,5225 +1984,2,24,F,5058 +1984,2,24,M,5252 +1984,2,25,F,4219 +1984,2,25,M,4418 +1984,2,26,F,4098 +1984,2,26,M,4196 +1984,2,27,F,4818 +1984,2,27,M,5234 +1984,2,28,F,5126 +1984,2,28,M,5305 +1984,2,29,F,4773 +1984,2,29,M,4907 +1984,2,99,M,1 +1984,3,1,F,5007 +1984,3,1,M,5464 +1984,3,2,F,5128 +1984,3,2,M,5377 +1984,3,3,F,4320 +1984,3,3,M,4488 +1984,3,4,F,4114 +1984,3,4,M,4249 +1984,3,5,F,4834 +1984,3,5,M,5290 +1984,3,6,F,5149 +1984,3,6,M,5408 +1984,3,7,F,5050 +1984,3,7,M,5309 +1984,3,8,F,5022 +1984,3,8,M,5254 +1984,3,9,F,4990 +1984,3,9,M,5105 +1984,3,10,F,4284 +1984,3,10,M,4379 +1984,3,11,F,4228 +1984,3,11,M,4173 +1984,3,12,F,5021 +1984,3,12,M,5231 +1984,3,13,F,4908 +1984,3,13,M,5363 +1984,3,14,F,4959 +1984,3,14,M,5217 +1984,3,15,F,5065 +1984,3,15,M,5264 +1984,3,16,F,5191 +1984,3,16,M,5515 +1984,3,17,F,4355 +1984,3,17,M,4528 +1984,3,18,F,3982 +1984,3,18,M,4349 +1984,3,19,F,5121 +1984,3,19,M,5306 +1984,3,20,F,5198 +1984,3,20,M,5516 +1984,3,21,F,5142 +1984,3,21,M,5253 +1984,3,22,F,5070 +1984,3,22,M,5283 +1984,3,23,F,4919 +1984,3,23,M,5365 +1984,3,24,F,4195 +1984,3,24,M,4371 +1984,3,25,F,4108 +1984,3,25,M,4158 +1984,3,26,F,4975 +1984,3,26,M,5191 +1984,3,27,F,5017 +1984,3,27,M,5339 +1984,3,28,F,5006 +1984,3,28,M,5294 +1984,3,29,F,5016 +1984,3,29,M,5141 +1984,3,30,F,4995 +1984,3,30,M,5274 +1984,3,31,F,4191 +1984,3,31,M,4323 +1984,3,99,M,1 +1984,4,1,F,4021 +1984,4,1,M,4181 +1984,4,2,F,4861 +1984,4,2,M,5155 +1984,4,3,F,5038 +1984,4,3,M,5014 +1984,4,4,F,4976 +1984,4,4,M,5355 +1984,4,5,F,4915 +1984,4,5,M,5056 +1984,4,6,F,5013 +1984,4,6,M,5327 +1984,4,7,F,4191 +1984,4,7,M,4376 +1984,4,8,F,3907 +1984,4,8,M,4150 +1984,4,9,F,4948 +1984,4,9,M,5085 +1984,4,10,F,4896 +1984,4,10,M,5303 +1984,4,11,F,4927 +1984,4,11,M,4903 +1984,4,12,F,5036 +1984,4,12,M,5246 +1984,4,13,F,4847 +1984,4,13,M,5255 +1984,4,14,F,4169 +1984,4,14,M,4408 +1984,4,15,F,3927 +1984,4,15,M,4161 +1984,4,16,F,4860 +1984,4,16,M,5131 +1984,4,17,F,5173 +1984,4,17,M,5397 +1984,4,18,F,4938 +1984,4,18,M,5148 +1984,4,19,F,4937 +1984,4,19,M,5120 +1984,4,20,F,4712 +1984,4,20,M,4977 +1984,4,21,F,3972 +1984,4,21,M,4291 +1984,4,22,F,3854 +1984,4,22,M,4037 +1984,4,23,F,4828 +1984,4,23,M,5103 +1984,4,24,F,5021 +1984,4,24,M,5272 +1984,4,25,F,4944 +1984,4,25,M,5108 +1984,4,26,F,4955 +1984,4,26,M,5245 +1984,4,27,F,4999 +1984,4,27,M,5153 +1984,4,28,F,4181 +1984,4,28,M,4303 +1984,4,29,F,3824 +1984,4,29,M,3897 +1984,4,30,F,4925 +1984,4,30,M,5172 +1984,4,99,F,2 +1984,4,99,M,1 +1984,5,1,F,5139 +1984,5,1,M,5396 +1984,5,2,F,4954 +1984,5,2,M,5233 +1984,5,3,F,5001 +1984,5,3,M,5237 +1984,5,4,F,5011 +1984,5,4,M,5281 +1984,5,5,F,4080 +1984,5,5,M,4300 +1984,5,6,F,3952 +1984,5,6,M,4232 +1984,5,7,F,4805 +1984,5,7,M,5008 +1984,5,8,F,4961 +1984,5,8,M,5242 +1984,5,9,F,4772 +1984,5,9,M,4916 +1984,5,10,F,4767 +1984,5,10,M,5179 +1984,5,11,F,5062 +1984,5,11,M,5213 +1984,5,12,F,4069 +1984,5,12,M,4309 +1984,5,13,F,3969 +1984,5,13,M,4230 +1984,5,14,F,5018 +1984,5,14,M,5069 +1984,5,15,F,5002 +1984,5,15,M,5287 +1984,5,16,F,4795 +1984,5,16,M,5210 +1984,5,17,F,4844 +1984,5,17,M,5007 +1984,5,18,F,4848 +1984,5,18,M,5232 +1984,5,19,F,4133 +1984,5,19,M,4343 +1984,5,20,F,4024 +1984,5,20,M,4258 +1984,5,21,F,4820 +1984,5,21,M,5361 +1984,5,22,F,5207 +1984,5,22,M,5573 +1984,5,23,F,4988 +1984,5,23,M,5383 +1984,5,24,F,4981 +1984,5,24,M,5152 +1984,5,25,F,5196 +1984,5,25,M,5379 +1984,5,26,F,4286 +1984,5,26,M,4563 +1984,5,27,F,4033 +1984,5,27,M,4355 +1984,5,28,F,4135 +1984,5,28,M,4276 +1984,5,29,F,5006 +1984,5,29,M,5262 +1984,5,30,F,5025 +1984,5,30,M,5260 +1984,5,31,F,4970 +1984,5,31,M,5129 +1984,5,99,F,4 +1984,6,1,F,5083 +1984,6,1,M,5318 +1984,6,2,F,4292 +1984,6,2,M,4588 +1984,6,3,F,4089 +1984,6,3,M,4188 +1984,6,4,F,4867 +1984,6,4,M,5151 +1984,6,5,F,5137 +1984,6,5,M,5377 +1984,6,6,F,5095 +1984,6,6,M,5382 +1984,6,7,F,4895 +1984,6,7,M,5349 +1984,6,8,F,5088 +1984,6,8,M,5472 +1984,6,9,F,4228 +1984,6,9,M,4533 +1984,6,10,F,4028 +1984,6,10,M,4394 +1984,6,11,F,5002 +1984,6,11,M,5325 +1984,6,12,F,5037 +1984,6,12,M,5465 +1984,6,13,F,4839 +1984,6,13,M,5245 +1984,6,14,F,5137 +1984,6,14,M,5595 +1984,6,15,F,5104 +1984,6,15,M,5228 +1984,6,16,F,4104 +1984,6,16,M,4353 +1984,6,17,F,4167 +1984,6,17,M,4444 +1984,6,18,F,5129 +1984,6,18,M,5354 +1984,6,19,F,5080 +1984,6,19,M,5435 +1984,6,20,F,5187 +1984,6,20,M,5468 +1984,6,21,F,4995 +1984,6,21,M,5566 +1984,6,22,F,5015 +1984,6,22,M,5571 +1984,6,23,F,4373 +1984,6,23,M,4599 +1984,6,24,F,4253 +1984,6,24,M,4568 +1984,6,25,F,5197 +1984,6,25,M,5364 +1984,6,26,F,5338 +1984,6,26,M,5642 +1984,6,27,F,5153 +1984,6,27,M,5509 +1984,6,28,F,5324 +1984,6,28,M,5470 +1984,6,29,F,5344 +1984,6,29,M,5743 +1984,6,30,F,4316 +1984,6,30,M,4624 +1984,6,99,F,1 +1984,6,99,M,2 +1984,7,1,F,4170 +1984,7,1,M,4395 +1984,7,2,F,5387 +1984,7,2,M,5420 +1984,7,3,F,5451 +1984,7,3,M,5799 +1984,7,4,F,4408 +1984,7,4,M,4832 +1984,7,5,F,5330 +1984,7,5,M,5459 +1984,7,6,F,5594 +1984,7,6,M,5972 +1984,7,7,F,4377 +1984,7,7,M,4761 +1984,7,8,F,4329 +1984,7,8,M,4627 +1984,7,9,F,5357 +1984,7,9,M,5639 +1984,7,10,F,5576 +1984,7,10,M,6085 +1984,7,11,F,5221 +1984,7,11,M,5702 +1984,7,12,F,5541 +1984,7,12,M,5723 +1984,7,13,F,5243 +1984,7,13,M,5444 +1984,7,14,F,4506 +1984,7,14,M,4707 +1984,7,15,F,4398 +1984,7,15,M,4648 +1984,7,16,F,5683 +1984,7,16,M,5612 +1984,7,17,F,5547 +1984,7,17,M,5946 +1984,7,18,F,5557 +1984,7,18,M,5721 +1984,7,19,F,5312 +1984,7,19,M,5730 +1984,7,20,F,5451 +1984,7,20,M,5734 +1984,7,21,F,4659 +1984,7,21,M,4679 +1984,7,22,F,4507 +1984,7,22,M,4522 +1984,7,23,F,5474 +1984,7,23,M,5702 +1984,7,24,F,5692 +1984,7,24,M,6119 +1984,7,25,F,5529 +1984,7,25,M,5570 +1984,7,26,F,5372 +1984,7,26,M,5631 +1984,7,27,F,5421 +1984,7,27,M,5899 +1984,7,28,F,4651 +1984,7,28,M,4819 +1984,7,29,F,4290 +1984,7,29,M,4611 +1984,7,30,F,5201 +1984,7,30,M,5581 +1984,7,31,F,5760 +1984,7,31,M,5822 +1984,7,99,M,4 +1984,8,1,F,5344 +1984,8,1,M,5883 +1984,8,2,F,5682 +1984,8,2,M,5728 +1984,8,3,F,5479 +1984,8,3,M,5891 +1984,8,4,F,4738 +1984,8,4,M,4856 +1984,8,5,F,4417 +1984,8,5,M,4720 +1984,8,6,F,5283 +1984,8,6,M,5930 +1984,8,7,F,5745 +1984,8,7,M,6139 +1984,8,8,F,5577 +1984,8,8,M,5815 +1984,8,9,F,5677 +1984,8,9,M,5700 +1984,8,10,F,5547 +1984,8,10,M,5817 +1984,8,11,F,4612 +1984,8,11,M,4853 +1984,8,12,F,4416 +1984,8,12,M,4629 +1984,8,13,F,5359 +1984,8,13,M,5658 +1984,8,14,F,5705 +1984,8,14,M,5845 +1984,8,15,F,5586 +1984,8,15,M,5903 +1984,8,16,F,5572 +1984,8,16,M,5729 +1984,8,17,F,5495 +1984,8,17,M,5932 +1984,8,18,F,4645 +1984,8,18,M,4762 +1984,8,19,F,4409 +1984,8,19,M,4536 +1984,8,20,F,5551 +1984,8,20,M,5677 +1984,8,21,F,5660 +1984,8,21,M,5925 +1984,8,22,F,5462 +1984,8,22,M,5718 +1984,8,23,F,5413 +1984,8,23,M,5697 +1984,8,24,F,5441 +1984,8,24,M,5721 +1984,8,25,F,4466 +1984,8,25,M,4788 +1984,8,26,F,4543 +1984,8,26,M,4691 +1984,8,27,F,5566 +1984,8,27,M,5655 +1984,8,28,F,5813 +1984,8,28,M,6016 +1984,8,29,F,5480 +1984,8,29,M,5862 +1984,8,30,F,5520 +1984,8,30,M,5901 +1984,8,31,F,5528 +1984,8,31,M,5953 +1984,8,99,M,5 +1984,9,1,F,4537 +1984,9,1,M,4833 +1984,9,2,F,4443 +1984,9,2,M,4519 +1984,9,3,F,4655 +1984,9,3,M,4688 +1984,9,4,F,5430 +1984,9,4,M,5681 +1984,9,5,F,5666 +1984,9,5,M,6161 +1984,9,6,F,5557 +1984,9,6,M,5885 +1984,9,7,F,5807 +1984,9,7,M,5953 +1984,9,8,F,4621 +1984,9,8,M,4967 +1984,9,9,F,4656 +1984,9,9,M,4698 +1984,9,10,F,5630 +1984,9,10,M,6011 +1984,9,11,F,5762 +1984,9,11,M,6033 +1984,9,12,F,5638 +1984,9,12,M,5750 +1984,9,13,F,5545 +1984,9,13,M,5970 +1984,9,14,F,5811 +1984,9,14,M,6223 +1984,9,15,F,4877 +1984,9,15,M,5003 +1984,9,16,F,4568 +1984,9,16,M,4742 +1984,9,17,F,5628 +1984,9,17,M,5859 +1984,9,18,F,5839 +1984,9,18,M,6199 +1984,9,19,F,5760 +1984,9,19,M,6027 +1984,9,20,F,5715 +1984,9,20,M,6005 +1984,9,21,F,5957 +1984,9,21,M,6164 +1984,9,22,F,4783 +1984,9,22,M,5074 +1984,9,23,F,4704 +1984,9,23,M,4918 +1984,9,24,F,5828 +1984,9,24,M,6152 +1984,9,25,F,6021 +1984,9,25,M,6250 +1984,9,26,F,5721 +1984,9,26,M,5970 +1984,9,27,F,5393 +1984,9,27,M,5781 +1984,9,28,F,5674 +1984,9,28,M,5885 +1984,9,29,F,4786 +1984,9,29,M,5027 +1984,9,30,F,4610 +1984,9,30,M,4852 +1984,9,99,F,4 +1984,10,1,F,5594 +1984,10,1,M,5641 +1984,10,2,F,5637 +1984,10,2,M,5935 +1984,10,3,F,5626 +1984,10,3,M,5861 +1984,10,4,F,5497 +1984,10,4,M,5842 +1984,10,5,F,5592 +1984,10,5,M,5795 +1984,10,6,F,4645 +1984,10,6,M,4878 +1984,10,7,F,4253 +1984,10,7,M,4496 +1984,10,8,F,5372 +1984,10,8,M,5682 +1984,10,9,F,5672 +1984,10,9,M,5763 +1984,10,10,F,5458 +1984,10,10,M,5688 +1984,10,11,F,5311 +1984,10,11,M,5749 +1984,10,12,F,5350 +1984,10,12,M,5668 +1984,10,13,F,4421 +1984,10,13,M,4588 +1984,10,14,F,4315 +1984,10,14,M,4521 +1984,10,15,F,5271 +1984,10,15,M,5690 +1984,10,16,F,5296 +1984,10,16,M,5703 +1984,10,17,F,5176 +1984,10,17,M,5517 +1984,10,18,F,5202 +1984,10,18,M,5395 +1984,10,19,F,5209 +1984,10,19,M,5628 +1984,10,20,F,4310 +1984,10,20,M,4481 +1984,10,21,F,4117 +1984,10,21,M,4427 +1984,10,22,F,5138 +1984,10,22,M,5471 +1984,10,23,F,5318 +1984,10,23,M,5565 +1984,10,24,F,5148 +1984,10,24,M,5247 +1984,10,25,F,5094 +1984,10,25,M,5369 +1984,10,26,F,5220 +1984,10,26,M,5348 +1984,10,27,F,4372 +1984,10,27,M,4510 +1984,10,28,F,4385 +1984,10,28,M,4525 +1984,10,29,F,5004 +1984,10,29,M,5262 +1984,10,30,F,5135 +1984,10,30,M,5323 +1984,10,31,F,4960 +1984,10,31,M,5073 +1984,11,1,F,5080 +1984,11,1,M,5522 +1984,11,2,F,5168 +1984,11,2,M,5268 +1984,11,3,F,4109 +1984,11,3,M,4417 +1984,11,4,F,4130 +1984,11,4,M,4250 +1984,11,5,F,5170 +1984,11,5,M,5402 +1984,11,6,F,5008 +1984,11,6,M,5498 +1984,11,7,F,5090 +1984,11,7,M,5201 +1984,11,8,F,5084 +1984,11,8,M,5294 +1984,11,9,F,5277 +1984,11,9,M,5495 +1984,11,10,F,4077 +1984,11,10,M,4410 +1984,11,11,F,4143 +1984,11,11,M,4433 +1984,11,12,F,4922 +1984,11,12,M,5340 +1984,11,13,F,5252 +1984,11,13,M,5503 +1984,11,14,F,4973 +1984,11,14,M,5430 +1984,11,15,F,5212 +1984,11,15,M,5489 +1984,11,16,F,5265 +1984,11,16,M,5457 +1984,11,17,F,4250 +1984,11,17,M,4438 +1984,11,18,F,4115 +1984,11,18,M,4185 +1984,11,19,F,5272 +1984,11,19,M,5468 +1984,11,20,F,5263 +1984,11,20,M,5678 +1984,11,21,F,5071 +1984,11,21,M,5430 +1984,11,22,F,3867 +1984,11,22,M,4144 +1984,11,23,F,4774 +1984,11,23,M,4915 +1984,11,24,F,4173 +1984,11,24,M,4339 +1984,11,25,F,4176 +1984,11,25,M,4367 +1984,11,26,F,5368 +1984,11,26,M,5288 +1984,11,27,F,5279 +1984,11,27,M,5540 +1984,11,28,F,5171 +1984,11,28,M,5287 +1984,11,29,F,5010 +1984,11,29,M,5377 +1984,11,30,F,5172 +1984,11,30,M,5388 +1984,11,99,F,2 +1984,11,99,M,3 +1984,12,1,F,4134 +1984,12,1,M,4345 +1984,12,2,F,4086 +1984,12,2,M,4262 +1984,12,3,F,5049 +1984,12,3,M,5240 +1984,12,4,F,5061 +1984,12,4,M,5483 +1984,12,5,F,4975 +1984,12,5,M,5207 +1984,12,6,F,4983 +1984,12,6,M,5189 +1984,12,7,F,5080 +1984,12,7,M,5180 +1984,12,8,F,4227 +1984,12,8,M,4232 +1984,12,9,F,4062 +1984,12,9,M,4205 +1984,12,10,F,5077 +1984,12,10,M,5429 +1984,12,11,F,5305 +1984,12,11,M,5442 +1984,12,12,F,5114 +1984,12,12,M,5455 +1984,12,13,F,5046 +1984,12,13,M,5332 +1984,12,14,F,5135 +1984,12,14,M,5495 +1984,12,15,F,4155 +1984,12,15,M,4350 +1984,12,16,F,4050 +1984,12,16,M,4203 +1984,12,17,F,5259 +1984,12,17,M,5501 +1984,12,18,F,5554 +1984,12,18,M,5890 +1984,12,19,F,5350 +1984,12,19,M,5583 +1984,12,20,F,5360 +1984,12,20,M,5465 +1984,12,21,F,5154 +1984,12,21,M,5320 +1984,12,22,F,4133 +1984,12,22,M,4386 +1984,12,23,F,3895 +1984,12,23,M,4006 +1984,12,24,F,4179 +1984,12,24,M,4396 +1984,12,25,F,3817 +1984,12,25,M,4034 +1984,12,26,F,4726 +1984,12,26,M,5051 +1984,12,27,F,5483 +1984,12,27,M,5741 +1984,12,28,F,5717 +1984,12,28,M,5988 +1984,12,29,F,4511 +1984,12,29,M,4743 +1984,12,30,F,4073 +1984,12,30,M,4313 +1984,12,31,F,4972 +1984,12,31,M,5133 +1984,12,99,F,2 +1985,1,1,F,4091 +1985,1,1,M,4244 +1985,1,2,F,4570 +1985,1,2,M,4807 +1985,1,3,F,4883 +1985,1,3,M,5169 +1985,1,4,F,5102 +1985,1,4,M,5356 +1985,1,5,F,4227 +1985,1,5,M,4421 +1985,1,6,F,4191 +1985,1,6,M,4286 +1985,1,7,F,4819 +1985,1,7,M,5259 +1985,1,8,F,5049 +1985,1,8,M,5193 +1985,1,9,F,4829 +1985,1,9,M,5159 +1985,1,10,F,4911 +1985,1,10,M,5239 +1985,1,11,F,5142 +1985,1,11,M,5359 +1985,1,12,F,4293 +1985,1,12,M,4466 +1985,1,13,F,4073 +1985,1,13,M,4174 +1985,1,14,F,5085 +1985,1,14,M,5324 +1985,1,15,F,5159 +1985,1,15,M,5533 +1985,1,16,F,4961 +1985,1,16,M,5238 +1985,1,17,F,5143 +1985,1,17,M,5248 +1985,1,18,F,5309 +1985,1,18,M,5556 +1985,1,19,F,4334 +1985,1,19,M,4648 +1985,1,20,F,4087 +1985,1,20,M,4258 +1985,1,21,F,5055 +1985,1,21,M,5259 +1985,1,22,F,5147 +1985,1,22,M,5451 +1985,1,23,F,5191 +1985,1,23,M,5305 +1985,1,24,F,5090 +1985,1,24,M,5380 +1985,1,25,F,5214 +1985,1,25,M,5541 +1985,1,26,F,4351 +1985,1,26,M,4423 +1985,1,27,F,4192 +1985,1,27,M,4249 +1985,1,28,F,5133 +1985,1,28,M,5189 +1985,1,29,F,5247 +1985,1,29,M,5335 +1985,1,30,F,5027 +1985,1,30,M,5281 +1985,1,31,F,4860 +1985,1,31,M,5302 +1985,1,99,F,1 +1985,1,99,M,1 +1985,2,1,F,5249 +1985,2,1,M,5342 +1985,2,2,F,4358 +1985,2,2,M,4471 +1985,2,3,F,4105 +1985,2,3,M,4242 +1985,2,4,F,5061 +1985,2,4,M,5277 +1985,2,5,F,5138 +1985,2,5,M,5469 +1985,2,6,F,5121 +1985,2,6,M,5385 +1985,2,7,F,5105 +1985,2,7,M,5403 +1985,2,8,F,5198 +1985,2,8,M,5381 +1985,2,9,F,4342 +1985,2,9,M,4579 +1985,2,10,F,4240 +1985,2,10,M,4367 +1985,2,11,F,5127 +1985,2,11,M,5470 +1985,2,12,F,5216 +1985,2,12,M,5673 +1985,2,13,F,4963 +1985,2,13,M,5343 +1985,2,14,F,5526 +1985,2,14,M,5837 +1985,2,15,F,5204 +1985,2,15,M,5477 +1985,2,16,F,4326 +1985,2,16,M,4557 +1985,2,17,F,4122 +1985,2,17,M,4354 +1985,2,18,F,4808 +1985,2,18,M,5117 +1985,2,19,F,5048 +1985,2,19,M,5524 +1985,2,20,F,5175 +1985,2,20,M,5361 +1985,2,21,F,5222 +1985,2,21,M,5361 +1985,2,22,F,5290 +1985,2,22,M,5439 +1985,2,23,F,4344 +1985,2,23,M,4489 +1985,2,24,F,4263 +1985,2,24,M,4573 +1985,2,25,F,5116 +1985,2,25,M,5413 +1985,2,26,F,5268 +1985,2,26,M,5450 +1985,2,27,F,5202 +1985,2,27,M,5469 +1985,2,28,F,5204 +1985,2,28,M,5412 +1985,2,99,F,1 +1985,2,99,M,4 +1985,3,1,F,5380 +1985,3,1,M,5496 +1985,3,2,F,4259 +1985,3,2,M,4565 +1985,3,3,F,4153 +1985,3,3,M,4401 +1985,3,4,F,5254 +1985,3,4,M,5375 +1985,3,5,F,5361 +1985,3,5,M,5436 +1985,3,6,F,5045 +1985,3,6,M,5430 +1985,3,7,F,5174 +1985,3,7,M,5335 +1985,3,8,F,5332 +1985,3,8,M,5595 +1985,3,9,F,4425 +1985,3,9,M,4585 +1985,3,10,F,4149 +1985,3,10,M,4195 +1985,3,11,F,5166 +1985,3,11,M,5378 +1985,3,12,F,5260 +1985,3,12,M,5552 +1985,3,13,F,5010 +1985,3,13,M,5276 +1985,3,14,F,5211 +1985,3,14,M,5521 +1985,3,15,F,5187 +1985,3,15,M,5423 +1985,3,16,F,4282 +1985,3,16,M,4408 +1985,3,17,F,4146 +1985,3,17,M,4357 +1985,3,18,F,5110 +1985,3,18,M,5406 +1985,3,19,F,5259 +1985,3,19,M,5544 +1985,3,20,F,5171 +1985,3,20,M,5512 +1985,3,21,F,5142 +1985,3,21,M,5449 +1985,3,22,F,5311 +1985,3,22,M,5481 +1985,3,23,F,4330 +1985,3,23,M,4537 +1985,3,24,F,4188 +1985,3,24,M,4270 +1985,3,25,F,5211 +1985,3,25,M,5261 +1985,3,26,F,5446 +1985,3,26,M,5472 +1985,3,27,F,5246 +1985,3,27,M,5420 +1985,3,28,F,5309 +1985,3,28,M,5581 +1985,3,29,F,5322 +1985,3,29,M,5715 +1985,3,30,F,4376 +1985,3,30,M,4511 +1985,3,31,F,4001 +1985,3,31,M,4320 +1985,4,1,F,4749 +1985,4,1,M,5085 +1985,4,2,F,5456 +1985,4,2,M,5807 +1985,4,3,F,5130 +1985,4,3,M,5424 +1985,4,4,F,5104 +1985,4,4,M,5485 +1985,4,5,F,5013 +1985,4,5,M,5225 +1985,4,6,F,4273 +1985,4,6,M,4488 +1985,4,7,F,3980 +1985,4,7,M,4156 +1985,4,8,F,4987 +1985,4,8,M,5148 +1985,4,9,F,5106 +1985,4,9,M,5435 +1985,4,10,F,5128 +1985,4,10,M,5431 +1985,4,11,F,5168 +1985,4,11,M,5338 +1985,4,12,F,5112 +1985,4,12,M,5621 +1985,4,13,F,4283 +1985,4,13,M,4483 +1985,4,14,F,4095 +1985,4,14,M,4295 +1985,4,15,F,5176 +1985,4,15,M,5431 +1985,4,16,F,5391 +1985,4,16,M,5730 +1985,4,17,F,5049 +1985,4,17,M,5444 +1985,4,18,F,5087 +1985,4,18,M,5377 +1985,4,19,F,5391 +1985,4,19,M,5787 +1985,4,20,F,4327 +1985,4,20,M,4470 +1985,4,21,F,4183 +1985,4,21,M,4456 +1985,4,22,F,5171 +1985,4,22,M,5541 +1985,4,23,F,5313 +1985,4,23,M,5717 +1985,4,24,F,5081 +1985,4,24,M,5332 +1985,4,25,F,5188 +1985,4,25,M,5446 +1985,4,26,F,5180 +1985,4,26,M,5491 +1985,4,27,F,4349 +1985,4,27,M,4576 +1985,4,28,F,4016 +1985,4,28,M,4043 +1985,4,29,F,5104 +1985,4,29,M,5380 +1985,4,30,F,5229 +1985,4,30,M,5665 +1985,4,99,F,1 +1985,5,1,F,5279 +1985,5,1,M,5448 +1985,5,2,F,5180 +1985,5,2,M,5548 +1985,5,3,F,5205 +1985,5,3,M,5388 +1985,5,4,F,4203 +1985,5,4,M,4477 +1985,5,5,F,4263 +1985,5,5,M,4415 +1985,5,6,F,5170 +1985,5,6,M,5472 +1985,5,7,F,5374 +1985,5,7,M,5893 +1985,5,8,F,5195 +1985,5,8,M,5528 +1985,5,9,F,5170 +1985,5,9,M,5594 +1985,5,10,F,5281 +1985,5,10,M,5724 +1985,5,11,F,4333 +1985,5,11,M,4638 +1985,5,12,F,4213 +1985,5,12,M,4430 +1985,5,13,F,4901 +1985,5,13,M,5253 +1985,5,14,F,5311 +1985,5,14,M,5788 +1985,5,15,F,5291 +1985,5,15,M,5471 +1985,5,16,F,5094 +1985,5,16,M,5315 +1985,5,17,F,5284 +1985,5,17,M,5561 +1985,5,18,F,4305 +1985,5,18,M,4645 +1985,5,19,F,4108 +1985,5,19,M,4345 +1985,5,20,F,5297 +1985,5,20,M,5658 +1985,5,21,F,5226 +1985,5,21,M,5736 +1985,5,22,F,5393 +1985,5,22,M,5515 +1985,5,23,F,5234 +1985,5,23,M,5611 +1985,5,24,F,5485 +1985,5,24,M,5711 +1985,5,25,F,4379 +1985,5,25,M,4546 +1985,5,26,F,4238 +1985,5,26,M,4518 +1985,5,27,F,4294 +1985,5,27,M,4755 +1985,5,28,F,5248 +1985,5,28,M,5617 +1985,5,29,F,5471 +1985,5,29,M,5754 +1985,5,30,F,5272 +1985,5,30,M,5671 +1985,5,31,F,5446 +1985,5,31,M,5842 +1985,6,1,F,4376 +1985,6,1,M,4620 +1985,6,2,F,4175 +1985,6,2,M,4578 +1985,6,3,F,5108 +1985,6,3,M,5430 +1985,6,4,F,5214 +1985,6,4,M,5558 +1985,6,5,F,5268 +1985,6,5,M,5578 +1985,6,6,F,5271 +1985,6,6,M,5534 +1985,6,7,F,5358 +1985,6,7,M,5635 +1985,6,8,F,4406 +1985,6,8,M,4530 +1985,6,9,F,4257 +1985,6,9,M,4532 +1985,6,10,F,5308 +1985,6,10,M,5611 +1985,6,11,F,5357 +1985,6,11,M,5734 +1985,6,12,F,5158 +1985,6,12,M,5462 +1985,6,13,F,5097 +1985,6,13,M,5305 +1985,6,14,F,5396 +1985,6,14,M,5651 +1985,6,15,F,4337 +1985,6,15,M,4654 +1985,6,16,F,4235 +1985,6,16,M,4596 +1985,6,17,F,5395 +1985,6,17,M,5567 +1985,6,18,F,5472 +1985,6,18,M,5669 +1985,6,19,F,5287 +1985,6,19,M,5569 +1985,6,20,F,5475 +1985,6,20,M,5866 +1985,6,21,F,5461 +1985,6,21,M,5743 +1985,6,22,F,4480 +1985,6,22,M,4778 +1985,6,23,F,4267 +1985,6,23,M,4490 +1985,6,24,F,5396 +1985,6,24,M,5618 +1985,6,25,F,5467 +1985,6,25,M,5918 +1985,6,26,F,5303 +1985,6,26,M,5809 +1985,6,27,F,5316 +1985,6,27,M,5750 +1985,6,28,F,5520 +1985,6,28,M,5840 +1985,6,29,F,4584 +1985,6,29,M,4616 +1985,6,30,F,4298 +1985,6,30,M,4579 +1985,7,1,F,5463 +1985,7,1,M,5839 +1985,7,2,F,5794 +1985,7,2,M,6111 +1985,7,3,F,5628 +1985,7,3,M,6070 +1985,7,4,F,4460 +1985,7,4,M,4716 +1985,7,5,F,5552 +1985,7,5,M,5681 +1985,7,6,F,4552 +1985,7,6,M,4774 +1985,7,7,F,4474 +1985,7,7,M,4640 +1985,7,8,F,5457 +1985,7,8,M,5883 +1985,7,9,F,5807 +1985,7,9,M,6075 +1985,7,10,F,5603 +1985,7,10,M,6037 +1985,7,11,F,5347 +1985,7,11,M,5801 +1985,7,12,F,5567 +1985,7,12,M,5892 +1985,7,13,F,4514 +1985,7,13,M,4666 +1985,7,14,F,4359 +1985,7,14,M,4606 +1985,7,15,F,5594 +1985,7,15,M,5820 +1985,7,16,F,5625 +1985,7,16,M,6060 +1985,7,17,F,5443 +1985,7,17,M,5800 +1985,7,18,F,5462 +1985,7,18,M,5769 +1985,7,19,F,5598 +1985,7,19,M,5886 +1985,7,20,F,4540 +1985,7,20,M,4835 +1985,7,21,F,4383 +1985,7,21,M,4531 +1985,7,22,F,5421 +1985,7,22,M,5743 +1985,7,23,F,5596 +1985,7,23,M,5893 +1985,7,24,F,5401 +1985,7,24,M,5699 +1985,7,25,F,5510 +1985,7,25,M,5831 +1985,7,26,F,5510 +1985,7,26,M,5889 +1985,7,27,F,4647 +1985,7,27,M,4794 +1985,7,28,F,4329 +1985,7,28,M,4612 +1985,7,29,F,5615 +1985,7,29,M,5716 +1985,7,30,F,5805 +1985,7,30,M,5902 +1985,7,31,F,5420 +1985,7,31,M,5864 +1985,8,1,F,5364 +1985,8,1,M,5838 +1985,8,2,F,5384 +1985,8,2,M,5837 +1985,8,3,F,4607 +1985,8,3,M,4806 +1985,8,4,F,4316 +1985,8,4,M,4488 +1985,8,5,F,5392 +1985,8,5,M,5768 +1985,8,6,F,5626 +1985,8,6,M,5936 +1985,8,7,F,5588 +1985,8,7,M,5854 +1985,8,8,F,5661 +1985,8,8,M,5872 +1985,8,9,F,5622 +1985,8,9,M,5920 +1985,8,10,F,4559 +1985,8,10,M,4762 +1985,8,11,F,4531 +1985,8,11,M,4496 +1985,8,12,F,5501 +1985,8,12,M,5923 +1985,8,13,F,5665 +1985,8,13,M,5971 +1985,8,14,F,5583 +1985,8,14,M,5957 +1985,8,15,F,5686 +1985,8,15,M,6060 +1985,8,16,F,5685 +1985,8,16,M,5929 +1985,8,17,F,4653 +1985,8,17,M,5027 +1985,8,18,F,4517 +1985,8,18,M,4774 +1985,8,19,F,5524 +1985,8,19,M,5790 +1985,8,20,F,5871 +1985,8,20,M,6032 +1985,8,21,F,5556 +1985,8,21,M,5828 +1985,8,22,F,5578 +1985,8,22,M,5960 +1985,8,23,F,5655 +1985,8,23,M,5779 +1985,8,24,F,4613 +1985,8,24,M,4860 +1985,8,25,F,4423 +1985,8,25,M,4705 +1985,8,26,F,5595 +1985,8,26,M,5729 +1985,8,27,F,5667 +1985,8,27,M,6113 +1985,8,28,F,5470 +1985,8,28,M,5898 +1985,8,29,F,5645 +1985,8,29,M,5870 +1985,8,30,F,5729 +1985,8,30,M,6138 +1985,8,31,F,4801 +1985,8,31,M,5031 +1985,8,99,F,1 +1985,9,1,F,4466 +1985,9,1,M,4679 +1985,9,2,F,4477 +1985,9,2,M,4706 +1985,9,3,F,5517 +1985,9,3,M,5900 +1985,9,4,F,5786 +1985,9,4,M,6199 +1985,9,5,F,5793 +1985,9,5,M,6166 +1985,9,6,F,5757 +1985,9,6,M,6168 +1985,9,7,F,4652 +1985,9,7,M,4912 +1985,9,8,F,4490 +1985,9,8,M,4582 +1985,9,9,F,5534 +1985,9,9,M,6089 +1985,9,10,F,5813 +1985,9,10,M,6015 +1985,9,11,F,5630 +1985,9,11,M,5891 +1985,9,12,F,5819 +1985,9,12,M,6139 +1985,9,13,F,5522 +1985,9,13,M,5808 +1985,9,14,F,4608 +1985,9,14,M,4934 +1985,9,15,F,4547 +1985,9,15,M,4734 +1985,9,16,F,5765 +1985,9,16,M,6084 +1985,9,17,F,5837 +1985,9,17,M,6221 +1985,9,18,F,5763 +1985,9,18,M,6056 +1985,9,19,F,5897 +1985,9,19,M,6315 +1985,9,20,F,5886 +1985,9,20,M,6232 +1985,9,21,F,4959 +1985,9,21,M,5185 +1985,9,22,F,4792 +1985,9,22,M,5006 +1985,9,23,F,5829 +1985,9,23,M,6080 +1985,9,24,F,6191 +1985,9,24,M,6205 +1985,9,25,F,5740 +1985,9,25,M,5955 +1985,9,26,F,6051 +1985,9,26,M,5987 +1985,9,27,F,5889 +1985,9,27,M,6037 +1985,9,28,F,4658 +1985,9,28,M,4926 +1985,9,29,F,4510 +1985,9,29,M,4726 +1985,9,30,F,5667 +1985,9,30,M,5893 +1985,10,1,F,5690 +1985,10,1,M,6029 +1985,10,2,F,5484 +1985,10,2,M,5881 +1985,10,3,F,5644 +1985,10,3,M,5715 +1985,10,4,F,5878 +1985,10,4,M,5932 +1985,10,5,F,4685 +1985,10,5,M,4893 +1985,10,6,F,4321 +1985,10,6,M,4607 +1985,10,7,F,5459 +1985,10,7,M,5565 +1985,10,8,F,5515 +1985,10,8,M,5843 +1985,10,9,F,5270 +1985,10,9,M,5689 +1985,10,10,F,5405 +1985,10,10,M,5652 +1985,10,11,F,5448 +1985,10,11,M,5736 +1985,10,12,F,4334 +1985,10,12,M,4614 +1985,10,13,F,4258 +1985,10,13,M,4257 +1985,10,14,F,5198 +1985,10,14,M,5453 +1985,10,15,F,5497 +1985,10,15,M,5856 +1985,10,16,F,5286 +1985,10,16,M,5498 +1985,10,17,F,5237 +1985,10,17,M,5572 +1985,10,18,F,5197 +1985,10,18,M,5652 +1985,10,19,F,4323 +1985,10,19,M,4524 +1985,10,20,F,4082 +1985,10,20,M,4399 +1985,10,21,F,5292 +1985,10,21,M,5481 +1985,10,22,F,5332 +1985,10,22,M,5691 +1985,10,23,F,5241 +1985,10,23,M,5457 +1985,10,24,F,5222 +1985,10,24,M,5435 +1985,10,25,F,5299 +1985,10,25,M,5593 +1985,10,26,F,4274 +1985,10,26,M,4447 +1985,10,27,F,4338 +1985,10,27,M,4485 +1985,10,28,F,5066 +1985,10,28,M,5444 +1985,10,29,F,5201 +1985,10,29,M,5589 +1985,10,30,F,5208 +1985,10,30,M,5458 +1985,10,31,F,5050 +1985,10,31,M,5196 +1985,11,1,F,5431 +1985,11,1,M,5664 +1985,11,2,F,4422 +1985,11,2,M,4453 +1985,11,3,F,4159 +1985,11,3,M,4283 +1985,11,4,F,5360 +1985,11,4,M,5536 +1985,11,5,F,5404 +1985,11,5,M,5715 +1985,11,6,F,5259 +1985,11,6,M,5436 +1985,11,7,F,5319 +1985,11,7,M,5546 +1985,11,8,F,5259 +1985,11,8,M,5539 +1985,11,9,F,4323 +1985,11,9,M,4465 +1985,11,10,F,4099 +1985,11,10,M,4239 +1985,11,11,F,5077 +1985,11,11,M,5271 +1985,11,12,F,5364 +1985,11,12,M,5620 +1985,11,13,F,5130 +1985,11,13,M,5375 +1985,11,14,F,5220 +1985,11,14,M,5617 +1985,11,15,F,5299 +1985,11,15,M,5672 +1985,11,16,F,4189 +1985,11,16,M,4529 +1985,11,17,F,4167 +1985,11,17,M,4378 +1985,11,18,F,5242 +1985,11,18,M,5479 +1985,11,19,F,5212 +1985,11,19,M,5588 +1985,11,20,F,5258 +1985,11,20,M,5571 +1985,11,21,F,5146 +1985,11,21,M,5492 +1985,11,22,F,5452 +1985,11,22,M,5606 +1985,11,23,F,4265 +1985,11,23,M,4549 +1985,11,24,F,4152 +1985,11,24,M,4429 +1985,11,25,F,5200 +1985,11,25,M,5616 +1985,11,26,F,5479 +1985,11,26,M,5805 +1985,11,27,F,5193 +1985,11,27,M,5573 +1985,11,28,F,4020 +1985,11,28,M,4163 +1985,11,29,F,4779 +1985,11,29,M,5143 +1985,11,30,F,4263 +1985,11,30,M,4433 +1985,11,99,M,1 +1985,12,1,F,4154 +1985,12,1,M,4395 +1985,12,2,F,5166 +1985,12,2,M,5412 +1985,12,3,F,5448 +1985,12,3,M,5815 +1985,12,4,F,5195 +1985,12,4,M,5477 +1985,12,5,F,5156 +1985,12,5,M,5448 +1985,12,6,F,5025 +1985,12,6,M,5459 +1985,12,7,F,4169 +1985,12,7,M,4366 +1985,12,8,F,4097 +1985,12,8,M,4297 +1985,12,9,F,5215 +1985,12,9,M,5392 +1985,12,10,F,5487 +1985,12,10,M,5487 +1985,12,11,F,5111 +1985,12,11,M,5322 +1985,12,12,F,5242 +1985,12,12,M,5368 +1985,12,13,F,4937 +1985,12,13,M,5208 +1985,12,14,F,4306 +1985,12,14,M,4400 +1985,12,15,F,4107 +1985,12,15,M,4146 +1985,12,16,F,5388 +1985,12,16,M,5599 +1985,12,17,F,5598 +1985,12,17,M,5855 +1985,12,18,F,5439 +1985,12,18,M,5544 +1985,12,19,F,5356 +1985,12,19,M,5561 +1985,12,20,F,5521 +1985,12,20,M,5787 +1985,12,21,F,4264 +1985,12,21,M,4652 +1985,12,22,F,4006 +1985,12,22,M,4253 +1985,12,23,F,4860 +1985,12,23,M,4999 +1985,12,24,F,4488 +1985,12,24,M,4715 +1985,12,25,F,3948 +1985,12,25,M,4083 +1985,12,26,F,4914 +1985,12,26,M,5108 +1985,12,27,F,5572 +1985,12,27,M,5912 +1985,12,28,F,4554 +1985,12,28,M,4694 +1985,12,29,F,4197 +1985,12,29,M,4329 +1985,12,30,F,5700 +1985,12,30,M,5944 +1985,12,31,F,5560 +1985,12,31,M,5925 +1986,1,1,F,4112 +1986,1,1,M,4332 +1986,1,2,F,4550 +1986,1,2,M,4896 +1986,1,3,F,5016 +1986,1,3,M,5311 +1986,1,4,F,4227 +1986,1,4,M,4580 +1986,1,5,F,4193 +1986,1,5,M,4204 +1986,1,6,F,5006 +1986,1,6,M,5287 +1986,1,7,F,5241 +1986,1,7,M,5475 +1986,1,8,F,4910 +1986,1,8,M,5155 +1986,1,9,F,4876 +1986,1,9,M,5180 +1986,1,10,F,5204 +1986,1,10,M,5455 +1986,1,11,F,4291 +1986,1,11,M,4579 +1986,1,12,F,4145 +1986,1,12,M,4129 +1986,1,13,F,4991 +1986,1,13,M,5215 +1986,1,14,F,5319 +1986,1,14,M,5420 +1986,1,15,F,5071 +1986,1,15,M,5332 +1986,1,16,F,5100 +1986,1,16,M,5287 +1986,1,17,F,5247 +1986,1,17,M,5427 +1986,1,18,F,4304 +1986,1,18,M,4539 +1986,1,19,F,4142 +1986,1,19,M,4212 +1986,1,20,F,5170 +1986,1,20,M,5319 +1986,1,21,F,5327 +1986,1,21,M,5529 +1986,1,22,F,5082 +1986,1,22,M,5316 +1986,1,23,F,5071 +1986,1,23,M,5317 +1986,1,24,F,5089 +1986,1,24,M,5422 +1986,1,25,F,4373 +1986,1,25,M,4648 +1986,1,26,F,4081 +1986,1,26,M,4247 +1986,1,27,F,5153 +1986,1,27,M,5306 +1986,1,28,F,5168 +1986,1,28,M,5482 +1986,1,29,F,5112 +1986,1,29,M,5330 +1986,1,30,F,5018 +1986,1,30,M,5358 +1986,1,31,F,5150 +1986,1,31,M,5488 +1986,2,1,F,4219 +1986,2,1,M,4517 +1986,2,2,F,4164 +1986,2,2,M,4378 +1986,2,3,F,5080 +1986,2,3,M,5323 +1986,2,4,F,5237 +1986,2,4,M,5528 +1986,2,5,F,4951 +1986,2,5,M,5268 +1986,2,6,F,5173 +1986,2,6,M,5433 +1986,2,7,F,5200 +1986,2,7,M,5438 +1986,2,8,F,4171 +1986,2,8,M,4588 +1986,2,9,F,4079 +1986,2,9,M,4392 +1986,2,10,F,5197 +1986,2,10,M,5361 +1986,2,11,F,5159 +1986,2,11,M,5588 +1986,2,12,F,5181 +1986,2,12,M,5390 +1986,2,13,F,5107 +1986,2,13,M,5335 +1986,2,14,F,5652 +1986,2,14,M,5760 +1986,2,15,F,4379 +1986,2,15,M,4548 +1986,2,16,F,4052 +1986,2,16,M,4361 +1986,2,17,F,4944 +1986,2,17,M,5293 +1986,2,18,F,5341 +1986,2,18,M,5578 +1986,2,19,F,5347 +1986,2,19,M,5522 +1986,2,20,F,5266 +1986,2,20,M,5388 +1986,2,21,F,5297 +1986,2,21,M,5523 +1986,2,22,F,4399 +1986,2,22,M,4570 +1986,2,23,F,4098 +1986,2,23,M,4285 +1986,2,24,F,5141 +1986,2,24,M,5422 +1986,2,25,F,5237 +1986,2,25,M,5654 +1986,2,26,F,5334 +1986,2,26,M,5382 +1986,2,27,F,5255 +1986,2,27,M,5417 +1986,2,28,F,5322 +1986,2,28,M,5561 +1986,2,99,F,5 +1986,2,99,M,4 +1986,3,1,F,4216 +1986,3,1,M,4560 +1986,3,2,F,4143 +1986,3,2,M,4191 +1986,3,3,F,5312 +1986,3,3,M,5359 +1986,3,4,F,5301 +1986,3,4,M,5625 +1986,3,5,F,5250 +1986,3,5,M,5401 +1986,3,6,F,5164 +1986,3,6,M,5619 +1986,3,7,F,5361 +1986,3,7,M,5672 +1986,3,8,F,4351 +1986,3,8,M,4412 +1986,3,9,F,4116 +1986,3,9,M,4124 +1986,3,10,F,5239 +1986,3,10,M,5600 +1986,3,11,F,5289 +1986,3,11,M,5669 +1986,3,12,F,5252 +1986,3,12,M,5492 +1986,3,13,F,5128 +1986,3,13,M,5394 +1986,3,14,F,5370 +1986,3,14,M,5527 +1986,3,15,F,4346 +1986,3,15,M,4508 +1986,3,16,F,4059 +1986,3,16,M,4373 +1986,3,17,F,5194 +1986,3,17,M,5476 +1986,3,18,F,5262 +1986,3,18,M,5603 +1986,3,19,F,5213 +1986,3,19,M,5497 +1986,3,20,F,5208 +1986,3,20,M,5535 +1986,3,21,F,5292 +1986,3,21,M,5692 +1986,3,22,F,4179 +1986,3,22,M,4375 +1986,3,23,F,4098 +1986,3,23,M,4289 +1986,3,24,F,5119 +1986,3,24,M,5423 +1986,3,25,F,5338 +1986,3,25,M,5806 +1986,3,26,F,5205 +1986,3,26,M,5667 +1986,3,27,F,5443 +1986,3,27,M,5638 +1986,3,28,F,5283 +1986,3,28,M,5530 +1986,3,29,F,4237 +1986,3,29,M,4580 +1986,3,30,F,4167 +1986,3,30,M,4405 +1986,3,31,F,5240 +1986,3,31,M,5329 +1986,4,1,F,5135 +1986,4,1,M,5434 +1986,4,2,F,5200 +1986,4,2,M,5483 +1986,4,3,F,5339 +1986,4,3,M,5661 +1986,4,4,F,5283 +1986,4,4,M,5524 +1986,4,5,F,4374 +1986,4,5,M,4570 +1986,4,6,F,4053 +1986,4,6,M,4236 +1986,4,7,F,5330 +1986,4,7,M,5390 +1986,4,8,F,5483 +1986,4,8,M,5734 +1986,4,9,F,5127 +1986,4,9,M,5529 +1986,4,10,F,5237 +1986,4,10,M,5384 +1986,4,11,F,5092 +1986,4,11,M,5394 +1986,4,12,F,4166 +1986,4,12,M,4442 +1986,4,13,F,4097 +1986,4,13,M,4198 +1986,4,14,F,5147 +1986,4,14,M,5511 +1986,4,15,F,5295 +1986,4,15,M,5581 +1986,4,16,F,5229 +1986,4,16,M,5380 +1986,4,17,F,5202 +1986,4,17,M,5462 +1986,4,18,F,5195 +1986,4,18,M,5354 +1986,4,19,F,4252 +1986,4,19,M,4427 +1986,4,20,F,4093 +1986,4,20,M,4289 +1986,4,21,F,5044 +1986,4,21,M,5403 +1986,4,22,F,5366 +1986,4,22,M,5530 +1986,4,23,F,5008 +1986,4,23,M,5333 +1986,4,24,F,5240 +1986,4,24,M,5332 +1986,4,25,F,5429 +1986,4,25,M,5559 +1986,4,26,F,4381 +1986,4,26,M,4642 +1986,4,27,F,4036 +1986,4,27,M,4131 +1986,4,28,F,5224 +1986,4,28,M,5596 +1986,4,29,F,5383 +1986,4,29,M,5620 +1986,4,30,F,5262 +1986,4,30,M,5619 +1986,5,1,F,5424 +1986,5,1,M,5538 +1986,5,2,F,5237 +1986,5,2,M,5584 +1986,5,3,F,4104 +1986,5,3,M,4420 +1986,5,4,F,3870 +1986,5,4,M,4051 +1986,5,5,F,5133 +1986,5,5,M,5361 +1986,5,6,F,5376 +1986,5,6,M,5642 +1986,5,7,F,5289 +1986,5,7,M,5351 +1986,5,8,F,5202 +1986,5,8,M,5315 +1986,5,9,F,5241 +1986,5,9,M,5572 +1986,5,10,F,4364 +1986,5,10,M,4471 +1986,5,11,F,4067 +1986,5,11,M,4291 +1986,5,12,F,5226 +1986,5,12,M,5411 +1986,5,13,F,5237 +1986,5,13,M,5722 +1986,5,14,F,5186 +1986,5,14,M,5564 +1986,5,15,F,5247 +1986,5,15,M,5639 +1986,5,16,F,5377 +1986,5,16,M,5739 +1986,5,17,F,4344 +1986,5,17,M,4536 +1986,5,18,F,4288 +1986,5,18,M,4314 +1986,5,19,F,5209 +1986,5,19,M,5576 +1986,5,20,F,5403 +1986,5,20,M,5818 +1986,5,21,F,5125 +1986,5,21,M,5594 +1986,5,22,F,5327 +1986,5,22,M,5454 +1986,5,23,F,5574 +1986,5,23,M,5710 +1986,5,24,F,4351 +1986,5,24,M,4586 +1986,5,25,F,3996 +1986,5,25,M,4446 +1986,5,26,F,4446 +1986,5,26,M,4392 +1986,5,27,F,5397 +1986,5,27,M,5689 +1986,5,28,F,5497 +1986,5,28,M,5957 +1986,5,29,F,5482 +1986,5,29,M,5866 +1986,5,30,F,5589 +1986,5,30,M,5971 +1986,5,31,F,4502 +1986,5,31,M,4629 +1986,6,1,F,4146 +1986,6,1,M,4433 +1986,6,2,F,5261 +1986,6,2,M,5496 +1986,6,3,F,5296 +1986,6,3,M,5489 +1986,6,4,F,5193 +1986,6,4,M,5569 +1986,6,5,F,5303 +1986,6,5,M,5620 +1986,6,6,F,5369 +1986,6,6,M,5641 +1986,6,7,F,4193 +1986,6,7,M,4471 +1986,6,8,F,4037 +1986,6,8,M,4368 +1986,6,9,F,5154 +1986,6,9,M,5478 +1986,6,10,F,5287 +1986,6,10,M,5592 +1986,6,11,F,5424 +1986,6,11,M,5574 +1986,6,12,F,5411 +1986,6,12,M,5700 +1986,6,13,F,5013 +1986,6,13,M,5398 +1986,6,14,F,4160 +1986,6,14,M,4483 +1986,6,15,F,4203 +1986,6,15,M,4325 +1986,6,16,F,5390 +1986,6,16,M,5661 +1986,6,17,F,5537 +1986,6,17,M,5824 +1986,6,18,F,5245 +1986,6,18,M,5447 +1986,6,19,F,5161 +1986,6,19,M,5515 +1986,6,20,F,5353 +1986,6,20,M,5801 +1986,6,21,F,4270 +1986,6,21,M,4587 +1986,6,22,F,4125 +1986,6,22,M,4348 +1986,6,23,F,5429 +1986,6,23,M,5539 +1986,6,24,F,5519 +1986,6,24,M,6013 +1986,6,25,F,5309 +1986,6,25,M,5729 +1986,6,26,F,5315 +1986,6,26,M,5785 +1986,6,27,F,5408 +1986,6,27,M,5878 +1986,6,28,F,4337 +1986,6,28,M,4791 +1986,6,29,F,4302 +1986,6,29,M,4416 +1986,6,30,F,5278 +1986,6,30,M,5612 +1986,7,1,F,5741 +1986,7,1,M,5804 +1986,7,2,F,5482 +1986,7,2,M,5931 +1986,7,3,F,5433 +1986,7,3,M,5873 +1986,7,4,F,4416 +1986,7,4,M,4603 +1986,7,5,F,4491 +1986,7,5,M,4620 +1986,7,6,F,4275 +1986,7,6,M,4390 +1986,7,7,F,5560 +1986,7,7,M,5807 +1986,7,8,F,5917 +1986,7,8,M,6134 +1986,7,9,F,5588 +1986,7,9,M,5816 +1986,7,10,F,5743 +1986,7,10,M,5941 +1986,7,11,F,5469 +1986,7,11,M,5936 +1986,7,12,F,4524 +1986,7,12,M,4658 +1986,7,13,F,4319 +1986,7,13,M,4470 +1986,7,14,F,5364 +1986,7,14,M,5769 +1986,7,15,F,5656 +1986,7,15,M,5971 +1986,7,16,F,5511 +1986,7,16,M,5823 +1986,7,17,F,5471 +1986,7,17,M,5907 +1986,7,18,F,5581 +1986,7,18,M,5991 +1986,7,19,F,4651 +1986,7,19,M,4770 +1986,7,20,F,4407 +1986,7,20,M,4643 +1986,7,21,F,5449 +1986,7,21,M,5751 +1986,7,22,F,5971 +1986,7,22,M,6292 +1986,7,23,F,5641 +1986,7,23,M,5899 +1986,7,24,F,5534 +1986,7,24,M,5788 +1986,7,25,F,5838 +1986,7,25,M,5963 +1986,7,26,F,4524 +1986,7,26,M,4862 +1986,7,27,F,4350 +1986,7,27,M,4609 +1986,7,28,F,5503 +1986,7,28,M,5869 +1986,7,29,F,5734 +1986,7,29,M,6162 +1986,7,30,F,5471 +1986,7,30,M,5947 +1986,7,31,F,5486 +1986,7,31,M,5812 +1986,7,99,M,1 +1986,8,1,F,5756 +1986,8,1,M,5930 +1986,8,2,F,4574 +1986,8,2,M,4783 +1986,8,3,F,4353 +1986,8,3,M,4522 +1986,8,4,F,5529 +1986,8,4,M,5735 +1986,8,5,F,5629 +1986,8,5,M,6026 +1986,8,6,F,5610 +1986,8,6,M,6033 +1986,8,7,F,5486 +1986,8,7,M,5927 +1986,8,8,F,5777 +1986,8,8,M,5956 +1986,8,9,F,4732 +1986,8,9,M,4828 +1986,8,10,F,4484 +1986,8,10,M,4440 +1986,8,11,F,5473 +1986,8,11,M,5743 +1986,8,12,F,5637 +1986,8,12,M,6048 +1986,8,13,F,5407 +1986,8,13,M,5751 +1986,8,14,F,5387 +1986,8,14,M,5953 +1986,8,15,F,5669 +1986,8,15,M,5982 +1986,8,16,F,4617 +1986,8,16,M,4935 +1986,8,17,F,4537 +1986,8,17,M,4598 +1986,8,18,F,5481 +1986,8,18,M,5777 +1986,8,19,F,5771 +1986,8,19,M,6062 +1986,8,20,F,5660 +1986,8,20,M,6108 +1986,8,21,F,5655 +1986,8,21,M,5854 +1986,8,22,F,5599 +1986,8,22,M,5955 +1986,8,23,F,4576 +1986,8,23,M,4915 +1986,8,24,F,4375 +1986,8,24,M,4565 +1986,8,25,F,5547 +1986,8,25,M,5786 +1986,8,26,F,5788 +1986,8,26,M,6031 +1986,8,27,F,5733 +1986,8,27,M,5947 +1986,8,28,F,5567 +1986,8,28,M,5895 +1986,8,29,F,5650 +1986,8,29,M,6067 +1986,8,30,F,4461 +1986,8,30,M,4750 +1986,8,31,F,4257 +1986,8,31,M,4585 +1986,9,1,F,4315 +1986,9,1,M,4633 +1986,9,2,F,5516 +1986,9,2,M,5761 +1986,9,3,F,5946 +1986,9,3,M,5894 +1986,9,4,F,5671 +1986,9,4,M,6066 +1986,9,5,F,5849 +1986,9,5,M,6035 +1986,9,6,F,4675 +1986,9,6,M,5010 +1986,9,7,F,4372 +1986,9,7,M,4672 +1986,9,8,F,5470 +1986,9,8,M,5751 +1986,9,9,F,5808 +1986,9,9,M,6069 +1986,9,10,F,5594 +1986,9,10,M,5849 +1986,9,11,F,5648 +1986,9,11,M,6056 +1986,9,12,F,5916 +1986,9,12,M,6095 +1986,9,13,F,4626 +1986,9,13,M,4970 +1986,9,14,F,4522 +1986,9,14,M,4645 +1986,9,15,F,5772 +1986,9,15,M,5991 +1986,9,16,F,5978 +1986,9,16,M,6323 +1986,9,17,F,5771 +1986,9,17,M,5986 +1986,9,18,F,5837 +1986,9,18,M,6174 +1986,9,19,F,5858 +1986,9,19,M,6379 +1986,9,20,F,4796 +1986,9,20,M,5110 +1986,9,21,F,4595 +1986,9,21,M,4888 +1986,9,22,F,5933 +1986,9,22,M,6223 +1986,9,23,F,5883 +1986,9,23,M,6352 +1986,9,24,F,5927 +1986,9,24,M,6135 +1986,9,25,F,6056 +1986,9,25,M,6225 +1986,9,26,F,6042 +1986,9,26,M,6370 +1986,9,27,F,4706 +1986,9,27,M,5077 +1986,9,28,F,4462 +1986,9,28,M,4709 +1986,9,29,F,5743 +1986,9,29,M,5988 +1986,9,30,F,5840 +1986,9,30,M,6019 +1986,9,99,F,1 +1986,10,1,F,5851 +1986,10,1,M,5853 +1986,10,2,F,5653 +1986,10,2,M,5883 +1986,10,3,F,5557 +1986,10,3,M,5889 +1986,10,4,F,4578 +1986,10,4,M,4704 +1986,10,5,F,4266 +1986,10,5,M,4533 +1986,10,6,F,5431 +1986,10,6,M,5548 +1986,10,7,F,5562 +1986,10,7,M,5938 +1986,10,8,F,5358 +1986,10,8,M,5655 +1986,10,9,F,5371 +1986,10,9,M,5488 +1986,10,10,F,5426 +1986,10,10,M,5742 +1986,10,11,F,4268 +1986,10,11,M,4507 +1986,10,12,F,4083 +1986,10,12,M,4134 +1986,10,13,F,5026 +1986,10,13,M,5296 +1986,10,14,F,5414 +1986,10,14,M,5616 +1986,10,15,F,5461 +1986,10,15,M,5624 +1986,10,16,F,5277 +1986,10,16,M,5590 +1986,10,17,F,5341 +1986,10,17,M,5663 +1986,10,18,F,4337 +1986,10,18,M,4373 +1986,10,19,F,4030 +1986,10,19,M,4188 +1986,10,20,F,5093 +1986,10,20,M,5352 +1986,10,21,F,5272 +1986,10,21,M,5709 +1986,10,22,F,5065 +1986,10,22,M,5524 +1986,10,23,F,5170 +1986,10,23,M,5356 +1986,10,24,F,5151 +1986,10,24,M,5585 +1986,10,25,F,4227 +1986,10,25,M,4353 +1986,10,26,F,4159 +1986,10,26,M,4403 +1986,10,27,F,5105 +1986,10,27,M,5417 +1986,10,28,F,5249 +1986,10,28,M,5547 +1986,10,29,F,5120 +1986,10,29,M,5474 +1986,10,30,F,5108 +1986,10,30,M,5396 +1986,10,31,F,4915 +1986,10,31,M,5207 +1986,11,1,F,4253 +1986,11,1,M,4464 +1986,11,2,F,4053 +1986,11,2,M,4156 +1986,11,3,F,5099 +1986,11,3,M,5494 +1986,11,4,F,5315 +1986,11,4,M,5749 +1986,11,5,F,5185 +1986,11,5,M,5286 +1986,11,6,F,5252 +1986,11,6,M,5374 +1986,11,7,F,5212 +1986,11,7,M,5468 +1986,11,8,F,4271 +1986,11,8,M,4487 +1986,11,9,F,4048 +1986,11,9,M,4291 +1986,11,10,F,5085 +1986,11,10,M,5318 +1986,11,11,F,5281 +1986,11,11,M,5594 +1986,11,12,F,5126 +1986,11,12,M,5473 +1986,11,13,F,5074 +1986,11,13,M,5171 +1986,11,14,F,5233 +1986,11,14,M,5435 +1986,11,15,F,4159 +1986,11,15,M,4306 +1986,11,16,F,4012 +1986,11,16,M,4201 +1986,11,17,F,5205 +1986,11,17,M,5329 +1986,11,18,F,5277 +1986,11,18,M,5769 +1986,11,19,F,5170 +1986,11,19,M,5420 +1986,11,20,F,5204 +1986,11,20,M,5337 +1986,11,21,F,5320 +1986,11,21,M,5536 +1986,11,22,F,4148 +1986,11,22,M,4294 +1986,11,23,F,3965 +1986,11,23,M,4221 +1986,11,24,F,5160 +1986,11,24,M,5441 +1986,11,25,F,5450 +1986,11,25,M,5651 +1986,11,26,F,5103 +1986,11,26,M,5355 +1986,11,27,F,3911 +1986,11,27,M,4104 +1986,11,28,F,4725 +1986,11,28,M,4999 +1986,11,29,F,4092 +1986,11,29,M,4270 +1986,11,30,F,4008 +1986,11,30,M,4182 +1986,11,99,M,1 +1986,12,1,F,5273 +1986,12,1,M,5339 +1986,12,2,F,5426 +1986,12,2,M,5680 +1986,12,3,F,5239 +1986,12,3,M,5411 +1986,12,4,F,4936 +1986,12,4,M,5344 +1986,12,5,F,5068 +1986,12,5,M,5373 +1986,12,6,F,4019 +1986,12,6,M,4276 +1986,12,7,F,3946 +1986,12,7,M,4141 +1986,12,8,F,5157 +1986,12,8,M,5289 +1986,12,9,F,5368 +1986,12,9,M,5595 +1986,12,10,F,5176 +1986,12,10,M,5443 +1986,12,11,F,5124 +1986,12,11,M,5279 +1986,12,12,F,5245 +1986,12,12,M,5433 +1986,12,13,F,4187 +1986,12,13,M,4315 +1986,12,14,F,3970 +1986,12,14,M,4110 +1986,12,15,F,5249 +1986,12,15,M,5617 +1986,12,16,F,5575 +1986,12,16,M,5814 +1986,12,17,F,5534 +1986,12,17,M,5683 +1986,12,18,F,5435 +1986,12,18,M,5752 +1986,12,19,F,5686 +1986,12,19,M,5942 +1986,12,20,F,4337 +1986,12,20,M,4351 +1986,12,21,F,3971 +1986,12,21,M,4175 +1986,12,22,F,5152 +1986,12,22,M,5437 +1986,12,23,F,5174 +1986,12,23,M,5359 +1986,12,24,F,4457 +1986,12,24,M,4640 +1986,12,25,F,3861 +1986,12,25,M,4246 +1986,12,26,F,5112 +1986,12,26,M,5305 +1986,12,27,F,4371 +1986,12,27,M,4450 +1986,12,28,F,4072 +1986,12,28,M,4214 +1986,12,29,F,5532 +1986,12,29,M,5766 +1986,12,30,F,5900 +1986,12,30,M,6337 +1986,12,31,F,5490 +1986,12,31,M,5898 +1986,12,99,M,1 +1987,1,1,F,4105 +1987,1,1,M,4238 +1987,1,2,F,4660 +1987,1,2,M,4870 +1987,1,3,F,4349 +1987,1,3,M,4429 +1987,1,4,F,4107 +1987,1,4,M,4152 +1987,1,5,F,4949 +1987,1,5,M,5153 +1987,1,6,F,5366 +1987,1,6,M,5650 +1987,1,7,F,5098 +1987,1,7,M,5436 +1987,1,8,F,5060 +1987,1,8,M,5402 +1987,1,9,F,5056 +1987,1,9,M,5414 +1987,1,10,F,4168 +1987,1,10,M,4477 +1987,1,11,F,4043 +1987,1,11,M,4138 +1987,1,12,F,5081 +1987,1,12,M,5304 +1987,1,13,F,5230 +1987,1,13,M,5351 +1987,1,14,F,5006 +1987,1,14,M,5450 +1987,1,15,F,5089 +1987,1,15,M,5431 +1987,1,16,F,5168 +1987,1,16,M,5465 +1987,1,17,F,4230 +1987,1,17,M,4378 +1987,1,18,F,3913 +1987,1,18,M,4182 +1987,1,19,F,5026 +1987,1,19,M,5134 +1987,1,20,F,5249 +1987,1,20,M,5421 +1987,1,21,F,5203 +1987,1,21,M,5409 +1987,1,22,F,5158 +1987,1,22,M,5444 +1987,1,23,F,5024 +1987,1,23,M,5557 +1987,1,24,F,4214 +1987,1,24,M,4368 +1987,1,25,F,4109 +1987,1,25,M,4232 +1987,1,26,F,5047 +1987,1,26,M,5250 +1987,1,27,F,5291 +1987,1,27,M,5540 +1987,1,28,F,5314 +1987,1,28,M,5497 +1987,1,29,F,5133 +1987,1,29,M,5508 +1987,1,30,F,5220 +1987,1,30,M,5492 +1987,1,31,F,4349 +1987,1,31,M,4547 +1987,2,1,F,4074 +1987,2,1,M,4329 +1987,2,2,F,5167 +1987,2,2,M,5418 +1987,2,3,F,5390 +1987,2,3,M,5649 +1987,2,4,F,5149 +1987,2,4,M,5400 +1987,2,5,F,5056 +1987,2,5,M,5473 +1987,2,6,F,5139 +1987,2,6,M,5472 +1987,2,7,F,4232 +1987,2,7,M,4503 +1987,2,8,F,4044 +1987,2,8,M,4234 +1987,2,9,F,4906 +1987,2,9,M,5508 +1987,2,10,F,5295 +1987,2,10,M,5681 +1987,2,11,F,5151 +1987,2,11,M,5498 +1987,2,12,F,5398 +1987,2,12,M,5588 +1987,2,13,F,5054 +1987,2,13,M,5202 +1987,2,14,F,4552 +1987,2,14,M,4693 +1987,2,15,F,4040 +1987,2,15,M,4344 +1987,2,16,F,4894 +1987,2,16,M,5369 +1987,2,17,F,5323 +1987,2,17,M,5607 +1987,2,18,F,5279 +1987,2,18,M,5477 +1987,2,19,F,5139 +1987,2,19,M,5349 +1987,2,20,F,5480 +1987,2,20,M,5512 +1987,2,21,F,4275 +1987,2,21,M,4565 +1987,2,22,F,4268 +1987,2,22,M,4374 +1987,2,23,F,5267 +1987,2,23,M,5485 +1987,2,24,F,5396 +1987,2,24,M,5619 +1987,2,25,F,5253 +1987,2,25,M,5610 +1987,2,26,F,5117 +1987,2,26,M,5508 +1987,2,27,F,5416 +1987,2,27,M,5594 +1987,2,28,F,4331 +1987,2,28,M,4614 +1987,2,99,M,3 +1987,3,1,F,4196 +1987,3,1,M,4289 +1987,3,2,F,5317 +1987,3,2,M,5501 +1987,3,3,F,5323 +1987,3,3,M,5608 +1987,3,4,F,5185 +1987,3,4,M,5482 +1987,3,5,F,5460 +1987,3,5,M,5511 +1987,3,6,F,5503 +1987,3,6,M,5592 +1987,3,7,F,4229 +1987,3,7,M,4525 +1987,3,8,F,3926 +1987,3,8,M,4368 +1987,3,9,F,5226 +1987,3,9,M,5583 +1987,3,10,F,5469 +1987,3,10,M,5731 +1987,3,11,F,5214 +1987,3,11,M,5483 +1987,3,12,F,5363 +1987,3,12,M,5537 +1987,3,13,F,4988 +1987,3,13,M,5411 +1987,3,14,F,4315 +1987,3,14,M,4522 +1987,3,15,F,4130 +1987,3,15,M,4188 +1987,3,16,F,5322 +1987,3,16,M,5496 +1987,3,17,F,5490 +1987,3,17,M,5736 +1987,3,18,F,5366 +1987,3,18,M,5729 +1987,3,19,F,5381 +1987,3,19,M,5567 +1987,3,20,F,5493 +1987,3,20,M,5762 +1987,3,21,F,4437 +1987,3,21,M,4569 +1987,3,22,F,4077 +1987,3,22,M,4230 +1987,3,23,F,5375 +1987,3,23,M,5455 +1987,3,24,F,5470 +1987,3,24,M,5847 +1987,3,25,F,5209 +1987,3,25,M,5593 +1987,3,26,F,5291 +1987,3,26,M,5624 +1987,3,27,F,5488 +1987,3,27,M,5569 +1987,3,28,F,4260 +1987,3,28,M,4595 +1987,3,29,F,4059 +1987,3,29,M,4296 +1987,3,30,F,5333 +1987,3,30,M,5290 +1987,3,31,F,5376 +1987,3,31,M,5820 +1987,3,99,F,1 +1987,4,1,F,5096 +1987,4,1,M,5116 +1987,4,2,F,5386 +1987,4,2,M,5683 +1987,4,3,F,5368 +1987,4,3,M,5677 +1987,4,4,F,4333 +1987,4,4,M,4486 +1987,4,5,F,4008 +1987,4,5,M,4004 +1987,4,6,F,5339 +1987,4,6,M,5426 +1987,4,7,F,5499 +1987,4,7,M,5825 +1987,4,8,F,5267 +1987,4,8,M,5739 +1987,4,9,F,5140 +1987,4,9,M,5670 +1987,4,10,F,5557 +1987,4,10,M,5727 +1987,4,11,F,4432 +1987,4,11,M,4601 +1987,4,12,F,4136 +1987,4,12,M,4399 +1987,4,13,F,5110 +1987,4,13,M,5500 +1987,4,14,F,5457 +1987,4,14,M,5960 +1987,4,15,F,5399 +1987,4,15,M,5668 +1987,4,16,F,5468 +1987,4,16,M,5707 +1987,4,17,F,5116 +1987,4,17,M,5442 +1987,4,18,F,4313 +1987,4,18,M,4612 +1987,4,19,F,4038 +1987,4,19,M,4187 +1987,4,20,F,5129 +1987,4,20,M,5465 +1987,4,21,F,5416 +1987,4,21,M,5789 +1987,4,22,F,5330 +1987,4,22,M,5642 +1987,4,23,F,5284 +1987,4,23,M,5532 +1987,4,24,F,5244 +1987,4,24,M,5603 +1987,4,25,F,4218 +1987,4,25,M,4445 +1987,4,26,F,4015 +1987,4,26,M,4271 +1987,4,27,F,5093 +1987,4,27,M,5293 +1987,4,28,F,5363 +1987,4,28,M,5532 +1987,4,29,F,5157 +1987,4,29,M,5453 +1987,4,30,F,5282 +1987,4,30,M,5618 +1987,4,99,F,1 +1987,5,1,F,5361 +1987,5,1,M,5578 +1987,5,2,F,4268 +1987,5,2,M,4611 +1987,5,3,F,4079 +1987,5,3,M,4296 +1987,5,4,F,5209 +1987,5,4,M,5599 +1987,5,5,F,5381 +1987,5,5,M,5729 +1987,5,6,F,5325 +1987,5,6,M,5501 +1987,5,7,F,5324 +1987,5,7,M,5632 +1987,5,8,F,5425 +1987,5,8,M,5773 +1987,5,9,F,4335 +1987,5,9,M,4518 +1987,5,10,F,4172 +1987,5,10,M,4395 +1987,5,11,F,5377 +1987,5,11,M,5616 +1987,5,12,F,5621 +1987,5,12,M,5792 +1987,5,13,F,5182 +1987,5,13,M,5378 +1987,5,14,F,5427 +1987,5,14,M,5611 +1987,5,15,F,5416 +1987,5,15,M,5794 +1987,5,16,F,4403 +1987,5,16,M,4490 +1987,5,17,F,4036 +1987,5,17,M,4293 +1987,5,18,F,5503 +1987,5,18,M,5705 +1987,5,19,F,5587 +1987,5,19,M,5856 +1987,5,20,F,5415 +1987,5,20,M,5811 +1987,5,21,F,5499 +1987,5,21,M,5790 +1987,5,22,F,5659 +1987,5,22,M,5961 +1987,5,23,F,4302 +1987,5,23,M,4652 +1987,5,24,F,4130 +1987,5,24,M,4238 +1987,5,25,F,4279 +1987,5,25,M,4510 +1987,5,26,F,5463 +1987,5,26,M,5668 +1987,5,27,F,5744 +1987,5,27,M,6091 +1987,5,28,F,5579 +1987,5,28,M,5858 +1987,5,29,F,5674 +1987,5,29,M,6105 +1987,5,30,F,4529 +1987,5,30,M,4747 +1987,5,31,F,4307 +1987,5,31,M,4502 +1987,6,1,F,5325 +1987,6,1,M,5774 +1987,6,2,F,5520 +1987,6,2,M,6020 +1987,6,3,F,5458 +1987,6,3,M,5722 +1987,6,4,F,5477 +1987,6,4,M,5754 +1987,6,5,F,5616 +1987,6,5,M,5744 +1987,6,6,F,4549 +1987,6,6,M,4713 +1987,6,7,F,4142 +1987,6,7,M,4409 +1987,6,8,F,5412 +1987,6,8,M,5690 +1987,6,9,F,5633 +1987,6,9,M,5865 +1987,6,10,F,5504 +1987,6,10,M,5853 +1987,6,11,F,5420 +1987,6,11,M,5870 +1987,6,12,F,5585 +1987,6,12,M,5925 +1987,6,13,F,4617 +1987,6,13,M,4637 +1987,6,14,F,4189 +1987,6,14,M,4434 +1987,6,15,F,5511 +1987,6,15,M,5942 +1987,6,16,F,5611 +1987,6,16,M,6036 +1987,6,17,F,5587 +1987,6,17,M,5884 +1987,6,18,F,5538 +1987,6,18,M,5687 +1987,6,19,F,5546 +1987,6,19,M,5915 +1987,6,20,F,4473 +1987,6,20,M,4782 +1987,6,21,F,4381 +1987,6,21,M,4505 +1987,6,22,F,5457 +1987,6,22,M,5616 +1987,6,23,F,5558 +1987,6,23,M,5875 +1987,6,24,F,5449 +1987,6,24,M,5742 +1987,6,25,F,5509 +1987,6,25,M,5918 +1987,6,26,F,5617 +1987,6,26,M,5931 +1987,6,27,F,4396 +1987,6,27,M,4592 +1987,6,28,F,4393 +1987,6,28,M,4302 +1987,6,29,F,5286 +1987,6,29,M,5583 +1987,6,30,F,5701 +1987,6,30,M,6177 +1987,7,1,F,5511 +1987,7,1,M,5929 +1987,7,2,F,5736 +1987,7,2,M,6113 +1987,7,3,F,4927 +1987,7,3,M,5226 +1987,7,4,F,4410 +1987,7,4,M,4454 +1987,7,5,F,4208 +1987,7,5,M,4437 +1987,7,6,F,5372 +1987,7,6,M,5577 +1987,7,7,F,5737 +1987,7,7,M,6127 +1987,7,8,F,5562 +1987,7,8,M,5968 +1987,7,9,F,5560 +1987,7,9,M,5844 +1987,7,10,F,5623 +1987,7,10,M,6023 +1987,7,11,F,4554 +1987,7,11,M,4751 +1987,7,12,F,4298 +1987,7,12,M,4572 +1987,7,13,F,5419 +1987,7,13,M,5536 +1987,7,14,F,5757 +1987,7,14,M,6133 +1987,7,15,F,5483 +1987,7,15,M,5873 +1987,7,16,F,5570 +1987,7,16,M,5862 +1987,7,17,F,5639 +1987,7,17,M,5879 +1987,7,18,F,4292 +1987,7,18,M,4719 +1987,7,19,F,4269 +1987,7,19,M,4590 +1987,7,20,F,5611 +1987,7,20,M,5778 +1987,7,21,F,5754 +1987,7,21,M,6100 +1987,7,22,F,5836 +1987,7,22,M,5795 +1987,7,23,F,5614 +1987,7,23,M,5965 +1987,7,24,F,5750 +1987,7,24,M,6028 +1987,7,25,F,4723 +1987,7,25,M,4807 +1987,7,26,F,4408 +1987,7,26,M,4665 +1987,7,27,F,5661 +1987,7,27,M,5943 +1987,7,28,F,5826 +1987,7,28,M,6217 +1987,7,29,F,5609 +1987,7,29,M,5981 +1987,7,30,F,5649 +1987,7,30,M,5965 +1987,7,31,F,5550 +1987,7,31,M,5943 +1987,8,1,F,4472 +1987,8,1,M,4670 +1987,8,2,F,4369 +1987,8,2,M,4527 +1987,8,3,F,5488 +1987,8,3,M,5841 +1987,8,4,F,5780 +1987,8,4,M,5940 +1987,8,5,F,5505 +1987,8,5,M,5846 +1987,8,6,F,5509 +1987,8,6,M,5827 +1987,8,7,F,5772 +1987,8,7,M,5993 +1987,8,8,F,4590 +1987,8,8,M,4831 +1987,8,9,F,4220 +1987,8,9,M,4417 +1987,8,10,F,5655 +1987,8,10,M,5821 +1987,8,11,F,5783 +1987,8,11,M,6007 +1987,8,12,F,5440 +1987,8,12,M,5901 +1987,8,13,F,5609 +1987,8,13,M,5809 +1987,8,14,F,5560 +1987,8,14,M,5912 +1987,8,15,F,4605 +1987,8,15,M,4793 +1987,8,16,F,4376 +1987,8,16,M,4482 +1987,8,17,F,5655 +1987,8,17,M,5930 +1987,8,18,F,5789 +1987,8,18,M,6107 +1987,8,19,F,5501 +1987,8,19,M,5733 +1987,8,20,F,5650 +1987,8,20,M,5790 +1987,8,21,F,5748 +1987,8,21,M,5944 +1987,8,22,F,4579 +1987,8,22,M,4734 +1987,8,23,F,4419 +1987,8,23,M,4481 +1987,8,24,F,5379 +1987,8,24,M,5677 +1987,8,25,F,5721 +1987,8,25,M,5949 +1987,8,26,F,5590 +1987,8,26,M,5872 +1987,8,27,F,5591 +1987,8,27,M,5942 +1987,8,28,F,5688 +1987,8,28,M,5928 +1987,8,29,F,4426 +1987,8,29,M,4722 +1987,8,30,F,4314 +1987,8,30,M,4484 +1987,8,31,F,5376 +1987,8,31,M,5619 +1987,9,1,F,5718 +1987,9,1,M,6016 +1987,9,2,F,5650 +1987,9,2,M,5801 +1987,9,3,F,5482 +1987,9,3,M,5990 +1987,9,4,F,5823 +1987,9,4,M,6046 +1987,9,5,F,4626 +1987,9,5,M,4766 +1987,9,6,F,4298 +1987,9,6,M,4504 +1987,9,7,F,4587 +1987,9,7,M,4743 +1987,9,8,F,5751 +1987,9,8,M,5980 +1987,9,9,F,5926 +1987,9,9,M,6252 +1987,9,10,F,6028 +1987,9,10,M,6224 +1987,9,11,F,5880 +1987,9,11,M,6471 +1987,9,12,F,4604 +1987,9,12,M,4863 +1987,9,13,F,4409 +1987,9,13,M,4615 +1987,9,14,F,5667 +1987,9,14,M,5905 +1987,9,15,F,5905 +1987,9,15,M,6235 +1987,9,16,F,5856 +1987,9,16,M,6132 +1987,9,17,F,5853 +1987,9,17,M,6253 +1987,9,18,F,6008 +1987,9,18,M,6189 +1987,9,19,F,4848 +1987,9,19,M,4980 +1987,9,20,F,4637 +1987,9,20,M,4795 +1987,9,21,F,5766 +1987,9,21,M,6109 +1987,9,22,F,6007 +1987,9,22,M,6249 +1987,9,23,F,5720 +1987,9,23,M,5962 +1987,9,24,F,5765 +1987,9,24,M,6095 +1987,9,25,F,5953 +1987,9,25,M,6220 +1987,9,26,F,4746 +1987,9,26,M,5045 +1987,9,27,F,4455 +1987,9,27,M,4692 +1987,9,28,F,5549 +1987,9,28,M,5964 +1987,9,29,F,5922 +1987,9,29,M,6163 +1987,9,30,F,5766 +1987,9,30,M,5971 +1987,10,1,F,5742 +1987,10,1,M,6049 +1987,10,2,F,5744 +1987,10,2,M,6117 +1987,10,3,F,4484 +1987,10,3,M,4754 +1987,10,4,F,4251 +1987,10,4,M,4435 +1987,10,5,F,5565 +1987,10,5,M,5803 +1987,10,6,F,5714 +1987,10,6,M,5851 +1987,10,7,F,5405 +1987,10,7,M,5851 +1987,10,8,F,5527 +1987,10,8,M,5788 +1987,10,9,F,5436 +1987,10,9,M,5818 +1987,10,10,F,4443 +1987,10,10,M,4722 +1987,10,11,F,4149 +1987,10,11,M,4394 +1987,10,12,F,5295 +1987,10,12,M,5576 +1987,10,13,F,5601 +1987,10,13,M,5832 +1987,10,14,F,5589 +1987,10,14,M,5785 +1987,10,15,F,5527 +1987,10,15,M,5892 +1987,10,16,F,5551 +1987,10,16,M,5689 +1987,10,17,F,4471 +1987,10,17,M,4501 +1987,10,18,F,4065 +1987,10,18,M,4205 +1987,10,19,F,5338 +1987,10,19,M,5506 +1987,10,20,F,5552 +1987,10,20,M,5828 +1987,10,21,F,5426 +1987,10,21,M,5764 +1987,10,22,F,5237 +1987,10,22,M,5556 +1987,10,23,F,5496 +1987,10,23,M,5664 +1987,10,24,F,4318 +1987,10,24,M,4530 +1987,10,25,F,4358 +1987,10,25,M,4491 +1987,10,26,F,5332 +1987,10,26,M,5524 +1987,10,27,F,5452 +1987,10,27,M,5664 +1987,10,28,F,5383 +1987,10,28,M,5663 +1987,10,29,F,5397 +1987,10,29,M,5703 +1987,10,30,F,5335 +1987,10,30,M,5711 +1987,10,31,F,4378 +1987,10,31,M,4507 +1987,11,1,F,4158 +1987,11,1,M,4305 +1987,11,2,F,5245 +1987,11,2,M,5546 +1987,11,3,F,5489 +1987,11,3,M,5738 +1987,11,4,F,5330 +1987,11,4,M,5802 +1987,11,5,F,5397 +1987,11,5,M,5580 +1987,11,6,F,5385 +1987,11,6,M,5714 +1987,11,7,F,4270 +1987,11,7,M,4544 +1987,11,8,F,4133 +1987,11,8,M,4300 +1987,11,9,F,5318 +1987,11,9,M,5577 +1987,11,10,F,5635 +1987,11,10,M,5755 +1987,11,11,F,5378 +1987,11,11,M,5628 +1987,11,12,F,5382 +1987,11,12,M,5624 +1987,11,13,F,5103 +1987,11,13,M,5539 +1987,11,14,F,4269 +1987,11,14,M,4608 +1987,11,15,F,4158 +1987,11,15,M,4365 +1987,11,16,F,5390 +1987,11,16,M,5627 +1987,11,17,F,5602 +1987,11,17,M,5841 +1987,11,18,F,5365 +1987,11,18,M,5655 +1987,11,19,F,5229 +1987,11,19,M,5599 +1987,11,20,F,5508 +1987,11,20,M,5741 +1987,11,21,F,4370 +1987,11,21,M,4521 +1987,11,22,F,4168 +1987,11,22,M,4308 +1987,11,23,F,5528 +1987,11,23,M,5742 +1987,11,24,F,5666 +1987,11,24,M,5879 +1987,11,25,F,5439 +1987,11,25,M,5686 +1987,11,26,F,4138 +1987,11,26,M,4180 +1987,11,27,F,4895 +1987,11,27,M,5119 +1987,11,28,F,4251 +1987,11,28,M,4434 +1987,11,29,F,4196 +1987,11,29,M,4220 +1987,11,30,F,5380 +1987,11,30,M,5705 +1987,12,1,F,5744 +1987,12,1,M,6063 +1987,12,2,F,5329 +1987,12,2,M,5607 +1987,12,3,F,5303 +1987,12,3,M,5562 +1987,12,4,F,5340 +1987,12,4,M,5555 +1987,12,5,F,4250 +1987,12,5,M,4405 +1987,12,6,F,4205 +1987,12,6,M,4278 +1987,12,7,F,5246 +1987,12,7,M,5421 +1987,12,8,F,5464 +1987,12,8,M,5715 +1987,12,9,F,5336 +1987,12,9,M,5508 +1987,12,10,F,5297 +1987,12,10,M,5640 +1987,12,11,F,5531 +1987,12,11,M,5504 +1987,12,12,F,4230 +1987,12,12,M,4577 +1987,12,13,F,4115 +1987,12,13,M,4124 +1987,12,14,F,5343 +1987,12,14,M,5590 +1987,12,15,F,5627 +1987,12,15,M,5906 +1987,12,16,F,5484 +1987,12,16,M,5648 +1987,12,17,F,5608 +1987,12,17,M,5786 +1987,12,18,F,5751 +1987,12,18,M,6121 +1987,12,19,F,4324 +1987,12,19,M,4596 +1987,12,20,F,4040 +1987,12,20,M,4320 +1987,12,21,F,5636 +1987,12,21,M,5895 +1987,12,22,F,5480 +1987,12,22,M,5682 +1987,12,23,F,4988 +1987,12,23,M,5313 +1987,12,24,F,4308 +1987,12,24,M,4611 +1987,12,25,F,3782 +1987,12,25,M,4099 +1987,12,26,F,4136 +1987,12,26,M,4310 +1987,12,27,F,4209 +1987,12,27,M,4332 +1987,12,28,F,5555 +1987,12,28,M,5907 +1987,12,29,F,5859 +1987,12,29,M,6322 +1987,12,30,F,5792 +1987,12,30,M,6051 +1987,12,31,F,5344 +1987,12,31,M,5468 +1988,1,1,F,4149 +1988,1,1,M,4345 +1988,1,2,F,3874 +1988,1,2,M,4175 +1988,1,3,F,3981 +1988,1,3,M,4196 +1988,1,4,F,5009 +1988,1,4,M,5193 +1988,1,5,F,5244 +1988,1,5,M,5683 +1988,1,6,F,5197 +1988,1,6,M,5472 +1988,1,7,F,5255 +1988,1,7,M,5559 +1988,1,8,F,5295 +1988,1,8,M,5453 +1988,1,9,F,4202 +1988,1,9,M,4443 +1988,1,10,F,4039 +1988,1,10,M,4260 +1988,1,11,F,5250 +1988,1,11,M,5402 +1988,1,12,F,5464 +1988,1,12,M,5709 +1988,1,13,F,5230 +1988,1,13,M,5455 +1988,1,14,F,5372 +1988,1,14,M,5409 +1988,1,15,F,5374 +1988,1,15,M,5767 +1988,1,16,F,4321 +1988,1,16,M,4514 +1988,1,17,F,4263 +1988,1,17,M,4253 +1988,1,18,F,5201 +1988,1,18,M,5416 +1988,1,19,F,5427 +1988,1,19,M,5729 +1988,1,20,F,5331 +1988,1,20,M,5670 +1988,1,21,F,5352 +1988,1,21,M,5597 +1988,1,22,F,5304 +1988,1,22,M,5623 +1988,1,23,F,4275 +1988,1,23,M,4453 +1988,1,24,F,4268 +1988,1,24,M,4305 +1988,1,25,F,5268 +1988,1,25,M,5516 +1988,1,26,F,5275 +1988,1,26,M,5696 +1988,1,27,F,5267 +1988,1,27,M,5598 +1988,1,28,F,5092 +1988,1,28,M,5597 +1988,1,29,F,5436 +1988,1,29,M,5583 +1988,1,30,F,4334 +1988,1,30,M,4565 +1988,1,31,F,4225 +1988,1,31,M,4290 +1988,2,1,F,5351 +1988,2,1,M,5396 +1988,2,2,F,5528 +1988,2,2,M,5842 +1988,2,3,F,5315 +1988,2,3,M,5564 +1988,2,4,F,5202 +1988,2,4,M,5600 +1988,2,5,F,5339 +1988,2,5,M,5605 +1988,2,6,F,4248 +1988,2,6,M,4473 +1988,2,7,F,4143 +1988,2,7,M,4167 +1988,2,8,F,5260 +1988,2,8,M,5364 +1988,2,9,F,5508 +1988,2,9,M,5760 +1988,2,10,F,5432 +1988,2,10,M,5738 +1988,2,11,F,5398 +1988,2,11,M,5622 +1988,2,12,F,5446 +1988,2,12,M,5714 +1988,2,13,F,4300 +1988,2,13,M,4420 +1988,2,14,F,4257 +1988,2,14,M,4473 +1988,2,15,F,5046 +1988,2,15,M,5314 +1988,2,16,F,5510 +1988,2,16,M,5749 +1988,2,17,F,5397 +1988,2,17,M,5765 +1988,2,18,F,5381 +1988,2,18,M,5659 +1988,2,19,F,5432 +1988,2,19,M,5697 +1988,2,20,F,4411 +1988,2,20,M,4797 +1988,2,21,F,4221 +1988,2,21,M,4201 +1988,2,22,F,5280 +1988,2,22,M,5553 +1988,2,23,F,5383 +1988,2,23,M,5618 +1988,2,24,F,5105 +1988,2,24,M,5576 +1988,2,25,F,5255 +1988,2,25,M,5537 +1988,2,26,F,5403 +1988,2,26,M,5681 +1988,2,27,F,4445 +1988,2,27,M,4573 +1988,2,28,F,4223 +1988,2,28,M,4276 +1988,2,29,F,4859 +1988,2,29,M,4939 +1988,3,1,F,5615 +1988,3,1,M,5886 +1988,3,2,F,5440 +1988,3,2,M,5577 +1988,3,3,F,5417 +1988,3,3,M,5673 +1988,3,4,F,5290 +1988,3,4,M,5720 +1988,3,5,F,4391 +1988,3,5,M,4526 +1988,3,6,F,4126 +1988,3,6,M,4257 +1988,3,7,F,5152 +1988,3,7,M,5384 +1988,3,8,F,5490 +1988,3,8,M,5819 +1988,3,9,F,5176 +1988,3,9,M,5545 +1988,3,10,F,5362 +1988,3,10,M,5511 +1988,3,11,F,5263 +1988,3,11,M,5527 +1988,3,12,F,4183 +1988,3,12,M,4540 +1988,3,13,F,3964 +1988,3,13,M,4327 +1988,3,14,F,5106 +1988,3,14,M,5273 +1988,3,15,F,5451 +1988,3,15,M,5652 +1988,3,16,F,5439 +1988,3,16,M,5604 +1988,3,17,F,5319 +1988,3,17,M,5599 +1988,3,18,F,5448 +1988,3,18,M,5641 +1988,3,19,F,4238 +1988,3,19,M,4517 +1988,3,20,F,4239 +1988,3,20,M,4407 +1988,3,21,F,5301 +1988,3,21,M,5605 +1988,3,22,F,5431 +1988,3,22,M,5857 +1988,3,23,F,5344 +1988,3,23,M,5636 +1988,3,24,F,5423 +1988,3,24,M,5622 +1988,3,25,F,5587 +1988,3,25,M,5692 +1988,3,26,F,4466 +1988,3,26,M,4702 +1988,3,27,F,4208 +1988,3,27,M,4326 +1988,3,28,F,5270 +1988,3,28,M,5510 +1988,3,29,F,5517 +1988,3,29,M,5888 +1988,3,30,F,5338 +1988,3,30,M,5544 +1988,3,31,F,5205 +1988,3,31,M,5675 +1988,3,99,F,1 +1988,3,99,M,1 +1988,4,1,F,4990 +1988,4,1,M,5308 +1988,4,2,F,4434 +1988,4,2,M,4531 +1988,4,3,F,3947 +1988,4,3,M,4181 +1988,4,4,F,5438 +1988,4,4,M,5583 +1988,4,5,F,5468 +1988,4,5,M,6054 +1988,4,6,F,5467 +1988,4,6,M,5617 +1988,4,7,F,5190 +1988,4,7,M,5696 +1988,4,8,F,5380 +1988,4,8,M,5681 +1988,4,9,F,4179 +1988,4,9,M,4522 +1988,4,10,F,4197 +1988,4,10,M,4305 +1988,4,11,F,5332 +1988,4,11,M,5590 +1988,4,12,F,5462 +1988,4,12,M,5770 +1988,4,13,F,5186 +1988,4,13,M,5348 +1988,4,14,F,5215 +1988,4,14,M,5662 +1988,4,15,F,5426 +1988,4,15,M,5689 +1988,4,16,F,4328 +1988,4,16,M,4568 +1988,4,17,F,4047 +1988,4,17,M,4253 +1988,4,18,F,5380 +1988,4,18,M,5554 +1988,4,19,F,5295 +1988,4,19,M,5749 +1988,4,20,F,5361 +1988,4,20,M,5659 +1988,4,21,F,5265 +1988,4,21,M,5677 +1988,4,22,F,5558 +1988,4,22,M,5736 +1988,4,23,F,4444 +1988,4,23,M,4721 +1988,4,24,F,4098 +1988,4,24,M,4387 +1988,4,25,F,5378 +1988,4,25,M,5626 +1988,4,26,F,5611 +1988,4,26,M,5789 +1988,4,27,F,5279 +1988,4,27,M,5782 +1988,4,28,F,5538 +1988,4,28,M,5791 +1988,4,29,F,5245 +1988,4,29,M,5591 +1988,4,30,F,4367 +1988,4,30,M,4537 +1988,4,99,F,1 +1988,5,1,F,4151 +1988,5,1,M,4323 +1988,5,2,F,5067 +1988,5,2,M,5497 +1988,5,3,F,5292 +1988,5,3,M,5803 +1988,5,4,F,5308 +1988,5,4,M,5623 +1988,5,5,F,5382 +1988,5,5,M,5656 +1988,5,6,F,5391 +1988,5,6,M,5880 +1988,5,7,F,4323 +1988,5,7,M,4668 +1988,5,8,F,4285 +1988,5,8,M,4407 +1988,5,9,F,5323 +1988,5,9,M,5754 +1988,5,10,F,5552 +1988,5,10,M,6112 +1988,5,11,F,5542 +1988,5,11,M,5777 +1988,5,12,F,5421 +1988,5,12,M,5786 +1988,5,13,F,5285 +1988,5,13,M,5646 +1988,5,14,F,4434 +1988,5,14,M,4515 +1988,5,15,F,4304 +1988,5,15,M,4460 +1988,5,16,F,5593 +1988,5,16,M,5674 +1988,5,17,F,5684 +1988,5,17,M,5909 +1988,5,18,F,5460 +1988,5,18,M,5851 +1988,5,19,F,5347 +1988,5,19,M,5763 +1988,5,20,F,5559 +1988,5,20,M,5893 +1988,5,21,F,4385 +1988,5,21,M,4570 +1988,5,22,F,4264 +1988,5,22,M,4552 +1988,5,23,F,5536 +1988,5,23,M,5819 +1988,5,24,F,5690 +1988,5,24,M,6172 +1988,5,25,F,5535 +1988,5,25,M,5929 +1988,5,26,F,5628 +1988,5,26,M,5866 +1988,5,27,F,5598 +1988,5,27,M,6114 +1988,5,28,F,4559 +1988,5,28,M,4783 +1988,5,29,F,4249 +1988,5,29,M,4492 +1988,5,30,F,4493 +1988,5,30,M,4760 +1988,5,31,F,5711 +1988,5,31,M,5875 +1988,5,99,F,1 +1988,6,1,F,5838 +1988,6,1,M,6199 +1988,6,2,F,5845 +1988,6,2,M,6066 +1988,6,3,F,5570 +1988,6,3,M,5892 +1988,6,4,F,4461 +1988,6,4,M,4758 +1988,6,5,F,4354 +1988,6,5,M,4437 +1988,6,6,F,5608 +1988,6,6,M,5784 +1988,6,7,F,5618 +1988,6,7,M,5955 +1988,6,8,F,5631 +1988,6,8,M,5864 +1988,6,9,F,5682 +1988,6,9,M,5837 +1988,6,10,F,5618 +1988,6,10,M,5931 +1988,6,11,F,4502 +1988,6,11,M,4597 +1988,6,12,F,4226 +1988,6,12,M,4448 +1988,6,13,F,5350 +1988,6,13,M,5747 +1988,6,14,F,5773 +1988,6,14,M,6142 +1988,6,15,F,5704 +1988,6,15,M,5947 +1988,6,16,F,5684 +1988,6,16,M,5972 +1988,6,17,F,5683 +1988,6,17,M,5956 +1988,6,18,F,4536 +1988,6,18,M,4844 +1988,6,19,F,4413 +1988,6,19,M,4625 +1988,6,20,F,5629 +1988,6,20,M,5923 +1988,6,21,F,5844 +1988,6,21,M,6196 +1988,6,22,F,5676 +1988,6,22,M,6103 +1988,6,23,F,5712 +1988,6,23,M,6074 +1988,6,24,F,5683 +1988,6,24,M,6015 +1988,6,25,F,4598 +1988,6,25,M,4872 +1988,6,26,F,4404 +1988,6,26,M,4454 +1988,6,27,F,5413 +1988,6,27,M,5753 +1988,6,28,F,5910 +1988,6,28,M,6255 +1988,6,29,F,5737 +1988,6,29,M,5892 +1988,6,30,F,5697 +1988,6,30,M,6283 +1988,6,99,F,1 +1988,6,99,M,1 +1988,7,1,F,5842 +1988,7,1,M,5983 +1988,7,2,F,4597 +1988,7,2,M,5014 +1988,7,3,F,4432 +1988,7,3,M,4556 +1988,7,4,F,4587 +1988,7,4,M,4672 +1988,7,5,F,5742 +1988,7,5,M,5973 +1988,7,6,F,6070 +1988,7,6,M,6418 +1988,7,7,F,6200 +1988,7,7,M,6527 +1988,7,8,F,6007 +1988,7,8,M,6417 +1988,7,9,F,4784 +1988,7,9,M,5139 +1988,7,10,F,4628 +1988,7,10,M,4780 +1988,7,11,F,5845 +1988,7,11,M,6134 +1988,7,12,F,5812 +1988,7,12,M,6256 +1988,7,13,F,5691 +1988,7,13,M,6062 +1988,7,14,F,5820 +1988,7,14,M,6133 +1988,7,15,F,6054 +1988,7,15,M,6375 +1988,7,16,F,4787 +1988,7,16,M,5048 +1988,7,17,F,4567 +1988,7,17,M,4741 +1988,7,18,F,5763 +1988,7,18,M,5936 +1988,7,19,F,5911 +1988,7,19,M,6274 +1988,7,20,F,5971 +1988,7,20,M,6125 +1988,7,21,F,5828 +1988,7,21,M,6099 +1988,7,22,F,5894 +1988,7,22,M,6218 +1988,7,23,F,4715 +1988,7,23,M,5081 +1988,7,24,F,4483 +1988,7,24,M,4646 +1988,7,25,F,5676 +1988,7,25,M,5965 +1988,7,26,F,6047 +1988,7,26,M,6297 +1988,7,27,F,5897 +1988,7,27,M,6267 +1988,7,28,F,5872 +1988,7,28,M,6323 +1988,7,29,F,5959 +1988,7,29,M,6345 +1988,7,30,F,5033 +1988,7,30,M,5152 +1988,7,31,F,4636 +1988,7,31,M,4725 +1988,8,1,F,5832 +1988,8,1,M,5974 +1988,8,2,F,5969 +1988,8,2,M,6196 +1988,8,3,F,5831 +1988,8,3,M,6114 +1988,8,4,F,5841 +1988,8,4,M,6315 +1988,8,5,F,5976 +1988,8,5,M,6198 +1988,8,6,F,4925 +1988,8,6,M,5030 +1988,8,7,F,4517 +1988,8,7,M,4690 +1988,8,8,F,6043 +1988,8,8,M,6370 +1988,8,9,F,6033 +1988,8,9,M,6249 +1988,8,10,F,5853 +1988,8,10,M,6162 +1988,8,11,F,5929 +1988,8,11,M,6275 +1988,8,12,F,5874 +1988,8,12,M,6352 +1988,8,13,F,4876 +1988,8,13,M,5041 +1988,8,14,F,4606 +1988,8,14,M,4828 +1988,8,15,F,5635 +1988,8,15,M,6134 +1988,8,16,F,6102 +1988,8,16,M,6332 +1988,8,17,F,5775 +1988,8,17,M,6221 +1988,8,18,F,6070 +1988,8,18,M,6258 +1988,8,19,F,5942 +1988,8,19,M,6225 +1988,8,20,F,4781 +1988,8,20,M,4981 +1988,8,21,F,4581 +1988,8,21,M,4690 +1988,8,22,F,5677 +1988,8,22,M,6006 +1988,8,23,F,5985 +1988,8,23,M,6251 +1988,8,24,F,5811 +1988,8,24,M,6120 +1988,8,25,F,5929 +1988,8,25,M,6177 +1988,8,26,F,5955 +1988,8,26,M,6288 +1988,8,27,F,4729 +1988,8,27,M,4995 +1988,8,28,F,4475 +1988,8,28,M,4795 +1988,8,29,F,5619 +1988,8,29,M,5978 +1988,8,30,F,6071 +1988,8,30,M,6209 +1988,8,31,F,5846 +1988,8,31,M,6057 +1988,9,1,F,5759 +1988,9,1,M,6108 +1988,9,2,F,6016 +1988,9,2,M,6235 +1988,9,3,F,4875 +1988,9,3,M,5091 +1988,9,4,F,4513 +1988,9,4,M,4737 +1988,9,5,F,4630 +1988,9,5,M,4662 +1988,9,6,F,5841 +1988,9,6,M,6243 +1988,9,7,F,6111 +1988,9,7,M,6398 +1988,9,8,F,6034 +1988,9,8,M,6317 +1988,9,9,F,6187 +1988,9,9,M,6474 +1988,9,10,F,4833 +1988,9,10,M,5135 +1988,9,11,F,4663 +1988,9,11,M,4842 +1988,9,12,F,5854 +1988,9,12,M,6208 +1988,9,13,F,6156 +1988,9,13,M,6295 +1988,9,14,F,6149 +1988,9,14,M,6402 +1988,9,15,F,5979 +1988,9,15,M,6419 +1988,9,16,F,6151 +1988,9,16,M,6469 +1988,9,17,F,5097 +1988,9,17,M,5265 +1988,9,18,F,4904 +1988,9,18,M,4944 +1988,9,19,F,6014 +1988,9,19,M,6318 +1988,9,20,F,6332 +1988,9,20,M,6519 +1988,9,21,F,6097 +1988,9,21,M,6329 +1988,9,22,F,6081 +1988,9,22,M,6473 +1988,9,23,F,6212 +1988,9,23,M,6482 +1988,9,24,F,4853 +1988,9,24,M,5125 +1988,9,25,F,4598 +1988,9,25,M,4891 +1988,9,26,F,5897 +1988,9,26,M,6140 +1988,9,27,F,6140 +1988,9,27,M,6314 +1988,9,28,F,5868 +1988,9,28,M,6088 +1988,9,29,F,6111 +1988,9,29,M,6136 +1988,9,30,F,5968 +1988,9,30,M,6295 +1988,10,1,F,4916 +1988,10,1,M,4886 +1988,10,2,F,4410 +1988,10,2,M,4681 +1988,10,3,F,5754 +1988,10,3,M,5930 +1988,10,4,F,5867 +1988,10,4,M,6205 +1988,10,5,F,5640 +1988,10,5,M,5978 +1988,10,6,F,5756 +1988,10,6,M,5984 +1988,10,7,F,5775 +1988,10,7,M,5992 +1988,10,8,F,4615 +1988,10,8,M,4715 +1988,10,9,F,4379 +1988,10,9,M,4705 +1988,10,10,F,5479 +1988,10,10,M,5888 +1988,10,11,F,5805 +1988,10,11,M,6031 +1988,10,12,F,5719 +1988,10,12,M,5844 +1988,10,13,F,5434 +1988,10,13,M,5744 +1988,10,14,F,5753 +1988,10,14,M,5865 +1988,10,15,F,4632 +1988,10,15,M,4749 +1988,10,16,F,4312 +1988,10,16,M,4439 +1988,10,17,F,5687 +1988,10,17,M,5816 +1988,10,18,F,5814 +1988,10,18,M,6079 +1988,10,19,F,5505 +1988,10,19,M,5601 +1988,10,20,F,5509 +1988,10,20,M,5820 +1988,10,21,F,5421 +1988,10,21,M,5776 +1988,10,22,F,4437 +1988,10,22,M,4778 +1988,10,23,F,4250 +1988,10,23,M,4421 +1988,10,24,F,5474 +1988,10,24,M,5787 +1988,10,25,F,5704 +1988,10,25,M,5946 +1988,10,26,F,5576 +1988,10,26,M,5840 +1988,10,27,F,5499 +1988,10,27,M,5584 +1988,10,28,F,5590 +1988,10,28,M,5918 +1988,10,29,F,4354 +1988,10,29,M,4635 +1988,10,30,F,4402 +1988,10,30,M,4548 +1988,10,31,F,4893 +1988,10,31,M,5086 +1988,10,99,M,1 +1988,11,1,F,5826 +1988,11,1,M,6036 +1988,11,2,F,5405 +1988,11,2,M,5645 +1988,11,3,F,5423 +1988,11,3,M,5897 +1988,11,4,F,5555 +1988,11,4,M,5997 +1988,11,5,F,4424 +1988,11,5,M,4733 +1988,11,6,F,4276 +1988,11,6,M,4457 +1988,11,7,F,5368 +1988,11,7,M,5816 +1988,11,8,F,5492 +1988,11,8,M,5882 +1988,11,9,F,5511 +1988,11,9,M,5616 +1988,11,10,F,5425 +1988,11,10,M,5729 +1988,11,11,F,5447 +1988,11,11,M,5713 +1988,11,12,F,4452 +1988,11,12,M,4595 +1988,11,13,F,4120 +1988,11,13,M,4355 +1988,11,14,F,5380 +1988,11,14,M,5595 +1988,11,15,F,5580 +1988,11,15,M,5828 +1988,11,16,F,5352 +1988,11,16,M,5620 +1988,11,17,F,5498 +1988,11,17,M,5708 +1988,11,18,F,5495 +1988,11,18,M,5970 +1988,11,19,F,4347 +1988,11,19,M,4635 +1988,11,20,F,4119 +1988,11,20,M,4316 +1988,11,21,F,5584 +1988,11,21,M,5774 +1988,11,22,F,5792 +1988,11,22,M,6072 +1988,11,23,F,5271 +1988,11,23,M,5690 +1988,11,24,F,4087 +1988,11,24,M,4437 +1988,11,25,F,4912 +1988,11,25,M,5186 +1988,11,26,F,4313 +1988,11,26,M,4599 +1988,11,27,F,4189 +1988,11,27,M,4321 +1988,11,28,F,5439 +1988,11,28,M,5610 +1988,11,29,F,5536 +1988,11,29,M,5987 +1988,11,30,F,5516 +1988,11,30,M,5713 +1988,12,1,F,5492 +1988,12,1,M,5735 +1988,12,2,F,5255 +1988,12,2,M,5644 +1988,12,3,F,4354 +1988,12,3,M,4516 +1988,12,4,F,4061 +1988,12,4,M,4263 +1988,12,5,F,5224 +1988,12,5,M,5427 +1988,12,6,F,5578 +1988,12,6,M,5719 +1988,12,7,F,5449 +1988,12,7,M,5646 +1988,12,8,F,5418 +1988,12,8,M,5713 +1988,12,9,F,5253 +1988,12,9,M,5625 +1988,12,10,F,4356 +1988,12,10,M,4469 +1988,12,11,F,4043 +1988,12,11,M,4409 +1988,12,12,F,5388 +1988,12,12,M,5571 +1988,12,13,F,5516 +1988,12,13,M,5767 +1988,12,14,F,5510 +1988,12,14,M,5852 +1988,12,15,F,5533 +1988,12,15,M,5831 +1988,12,16,F,5622 +1988,12,16,M,5841 +1988,12,17,F,4270 +1988,12,17,M,4486 +1988,12,18,F,4211 +1988,12,18,M,4220 +1988,12,19,F,5651 +1988,12,19,M,6065 +1988,12,20,F,6092 +1988,12,20,M,6343 +1988,12,21,F,5462 +1988,12,21,M,5861 +1988,12,22,F,5219 +1988,12,22,M,5510 +1988,12,23,F,4887 +1988,12,23,M,5110 +1988,12,24,F,4024 +1988,12,24,M,4269 +1988,12,25,F,3874 +1988,12,25,M,3961 +1988,12,26,F,4274 +1988,12,26,M,4409 +1988,12,27,F,5633 +1988,12,27,M,5895 +1988,12,28,F,5858 +1988,12,28,M,5989 +1988,12,29,F,5760 +1988,12,29,M,5944 +1988,12,30,F,5742 +1988,12,30,M,6095 +1988,12,31,F,4435 +1988,12,31,M,4698 +1989,1,null,F,156749 +1989,1,null,M,164052 +1989,2,null,F,146710 +1989,2,null,M,154047 +1989,3,null,F,165889 +1989,3,null,M,174433 +1989,4,null,F,155689 +1989,4,null,M,163432 +1989,5,null,F,163800 +1989,5,null,M,172892 +1989,6,null,F,165525 +1989,6,null,M,173823 +1989,7,null,F,174054 +1989,7,null,M,183063 +1989,8,null,F,178986 +1989,8,null,M,188074 +1989,9,null,F,174808 +1989,9,null,M,182962 +1989,10,null,F,168303 +1989,10,null,M,176258 +1989,11,null,F,159013 +1989,11,null,M,166923 +1989,12,null,F,164186 +1989,12,null,M,172022 +1990,1,null,F,163576 +1990,1,null,M,172073 +1990,2,null,F,153015 +1990,2,null,M,159915 +1990,3,null,F,171463 +1990,3,null,M,179499 +1990,4,null,F,164469 +1990,4,null,M,172275 +1990,5,null,F,173127 +1990,5,null,M,181366 +1990,6,null,F,168941 +1990,6,null,M,178799 +1990,7,null,F,179270 +1990,7,null,M,188837 +1990,8,null,F,181845 +1990,8,null,M,191101 +1990,9,null,F,175292 +1990,9,null,M,183840 +1990,10,null,F,172365 +1990,10,null,M,181247 +1990,11,null,F,163036 +1990,11,null,M,170515 +1990,12,null,F,164567 +1990,12,null,M,172484 +1991,1,null,F,164305 +1991,1,null,M,171198 +1991,2,null,F,151260 +1991,2,null,M,158163 +1991,3,null,F,167751 +1991,3,null,M,176650 +1991,4,null,F,163778 +1991,4,null,M,172218 +1991,5,null,F,172728 +1991,5,null,M,180764 +1991,6,null,F,163048 +1991,6,null,M,171594 +1991,7,null,F,177698 +1991,7,null,M,185629 +1991,8,null,F,179729 +1991,8,null,M,187491 +1991,9,null,F,174362 +1991,9,null,M,181999 +1991,10,null,F,171490 +1991,10,null,M,177890 +1991,11,null,F,158692 +1991,11,null,M,165320 +1991,12,null,F,166760 +1991,12,null,M,174825 +1992,1,null,F,162874 +1992,1,null,M,171502 +1992,2,null,F,154333 +1992,2,null,M,161410 +1992,3,null,F,165468 +1992,3,null,M,174389 +1992,4,null,F,162792 +1992,4,null,M,170879 +1992,5,null,F,167941 +1992,5,null,M,176584 +1992,6,null,F,165818 +1992,6,null,M,174250 +1992,7,null,F,175090 +1992,7,null,M,184407 +1992,8,null,F,171095 +1992,8,null,M,178271 +1992,9,null,F,169543 +1992,9,null,M,178412 +1992,10,null,F,167907 +1992,10,null,M,176076 +1992,11,null,F,157342 +1992,11,null,M,164949 +1992,12,null,F,164915 +1992,12,null,M,173181 +1993,1,null,F,157524 +1993,1,null,M,165896 +1993,2,null,F,148569 +1993,2,null,M,156378 +1993,3,null,F,167013 +1993,3,null,M,175505 +1993,4,null,F,159698 +1993,4,null,M,167674 +1993,5,null,F,163377 +1993,5,null,M,172991 +1993,6,null,F,163769 +1993,6,null,M,171934 +1993,7,null,F,171888 +1993,7,null,M,181061 +1993,8,null,F,171785 +1993,8,null,M,179521 +1993,9,null,F,170167 +1993,9,null,M,178232 +1993,10,null,F,162794 +1993,10,null,M,170519 +1993,11,null,F,154679 +1993,11,null,M,162072 +1993,12,null,F,162193 +1993,12,null,M,169284 +1994,1,null,F,157015 +1994,1,null,M,163982 +1994,2,null,F,147453 +1994,2,null,M,154175 +1994,3,null,F,165797 +1994,3,null,M,174281 +1994,4,null,F,154935 +1994,4,null,M,162778 +1994,5,null,F,160679 +1994,5,null,M,169921 +1994,6,null,F,160576 +1994,6,null,M,169510 +1994,7,null,F,168646 +1994,7,null,M,177579 +1994,8,null,F,172383 +1994,8,null,M,180197 +1994,9,null,F,166020 +1994,9,null,M,173600 +1994,10,null,F,162185 +1994,10,null,M,168356 +1994,11,null,F,156514 +1994,11,null,M,163252 +1994,12,null,F,160031 +1994,12,null,M,167060 +1995,1,null,F,154538 +1995,1,null,M,161749 +1995,2,null,F,144485 +1995,2,null,M,150879 +1995,3,null,F,160096 +1995,3,null,M,168678 +1995,4,null,F,150914 +1995,4,null,M,158447 +1995,5,null,F,162601 +1995,5,null,M,172235 +1995,6,null,F,160527 +1995,6,null,M,169557 +1995,7,null,F,166814 +1995,7,null,M,174366 +1995,8,null,F,171158 +1995,8,null,M,179864 +1995,9,null,F,165661 +1995,9,null,M,173746 +1995,10,null,F,162008 +1995,10,null,M,168303 +1995,11,null,F,151949 +1995,11,null,M,159181 +1995,12,null,F,154120 +1995,12,null,M,161136 +1996,1,null,F,153564 +1996,1,null,M,161007 +1996,2,null,F,147336 +1996,2,null,M,154683 +1996,3,null,F,157536 +1996,3,null,M,165311 +1996,4,null,F,152624 +1996,4,null,M,160256 +1996,5,null,F,158983 +1996,5,null,M,167020 +1996,6,null,F,155502 +1996,6,null,M,163267 +1996,7,null,F,168423 +1996,7,null,M,177043 +1996,8,null,F,169237 +1996,8,null,M,177393 +1996,9,null,F,165338 +1996,9,null,M,171299 +1996,10,null,F,164939 +1996,10,null,M,171717 +1996,11,null,F,151621 +1996,11,null,M,158058 +1996,12,null,F,157561 +1996,12,null,M,165156 +1997,1,null,F,155408 +1997,1,null,M,162091 +1997,2,null,F,142259 +1997,2,null,M,149536 +1997,3,null,F,157335 +1997,3,null,M,164148 +1997,4,null,F,153524 +1997,4,null,M,160935 +1997,5,null,F,161304 +1997,5,null,M,169296 +1997,6,null,F,156734 +1997,6,null,M,165435 +1997,7,null,F,169391 +1997,7,null,M,177423 +1997,8,null,F,165928 +1997,8,null,M,173528 +1997,9,null,F,162975 +1997,9,null,M,170937 +1997,10,null,F,160645 +1997,10,null,M,168306 +1997,11,null,F,150194 +1997,11,null,M,157395 +1997,12,null,F,161231 +1997,12,null,M,168371 +1998,1,null,F,155671 +1998,1,null,M,163902 +1998,2,null,F,146310 +1998,2,null,M,152641 +1998,3,null,F,161291 +1998,3,null,M,168419 +1998,4,null,F,156178 +1998,4,null,M,163853 +1998,5,null,F,161543 +1998,5,null,M,169221 +1998,6,null,F,159207 +1998,6,null,M,168175 +1998,7,null,F,170376 +1998,7,null,M,178616 +1998,8,null,F,168353 +1998,8,null,M,176747 +1998,9,null,F,168502 +1998,9,null,M,175254 +1998,10,null,F,162998 +1998,10,null,M,170140 +1998,11,null,F,153386 +1998,11,null,M,160161 +1998,12,null,F,163291 +1998,12,null,M,170957 +1999,1,null,F,156054 +1999,1,null,M,163440 +1999,2,null,F,145172 +1999,2,null,M,152660 +1999,3,null,F,162648 +1999,3,null,M,170574 +1999,4,null,F,154150 +1999,4,null,M,163007 +1999,5,null,F,160124 +1999,5,null,M,168682 +1999,6,null,F,162255 +1999,6,null,M,170261 +1999,7,null,F,170905 +1999,7,null,M,179321 +1999,8,null,F,171718 +1999,8,null,M,180033 +1999,9,null,F,170699 +1999,9,null,M,179124 +1999,10,null,F,163347 +1999,10,null,M,170004 +1999,11,null,F,154605 +1999,11,null,M,161062 +1999,12,null,F,162833 +1999,12,null,M,170787 +2000,1,null,F,161288 +2000,1,null,M,169225 +2000,2,null,F,154694 +2000,2,null,M,162997 +2000,3,null,F,166124 +2000,3,null,M,174808 +2000,4,null,F,155038 +2000,4,null,M,162495 +2000,5,null,F,166443 +2000,5,null,M,175161 +2000,6,null,F,166358 +2000,6,null,M,175247 +2000,7,null,F,170327 +2000,7,null,M,179102 +2000,8,null,F,176508 +2000,8,null,M,184030 +2000,9,null,F,170411 +2000,9,null,M,177693 +2000,10,null,F,168039 +2000,10,null,M,176350 +2000,11,null,F,164086 +2000,11,null,M,170206 +2000,12,null,F,164939 +2000,12,null,M,172254 +2001,1,null,F,164404 +2001,1,null,M,171208 +2001,2,null,F,148640 +2001,2,null,M,155259 +2001,3,null,F,165359 +2001,3,null,M,173729 +2001,4,null,F,158235 +2001,4,null,M,165804 +2001,5,null,F,167878 +2001,5,null,M,176615 +2001,6,null,F,161947 +2001,6,null,M,169590 +2001,7,null,F,172082 +2001,7,null,M,179504 +2001,8,null,F,177031 +2001,8,null,M,185351 +2001,9,null,F,167748 +2001,9,null,M,175338 +2001,10,null,F,168515 +2001,10,null,M,176084 +2001,11,null,F,158581 +2001,11,null,M,165633 +2001,12,null,F,160350 +2001,12,null,M,166646 +2002,1,null,F,161477 +2002,1,null,M,169612 +2002,2,null,F,148745 +2002,2,null,M,155627 +2002,3,null,F,162351 +2002,3,null,M,169543 +2002,4,null,F,158674 +2002,4,null,M,166175 +2002,5,null,F,165530 +2002,5,null,M,173925 +2002,6,null,F,159792 +2002,6,null,M,168261 +2002,7,null,F,175085 +2002,7,null,M,183135 +2002,8,null,F,175501 +2002,8,null,M,184444 +2002,9,null,F,170451 +2002,9,null,M,178945 +2002,10,null,F,169482 +2002,10,null,M,176842 +2002,11,null,F,155849 +2002,11,null,M,163200 +2002,12,null,F,163582 +2002,12,null,M,171148 +2003,1,null,F,161200 +2003,1,null,M,169104 +2003,2,null,F,150278 +2003,2,null,M,157384 +2003,3,null,F,164318 +2003,3,null,M,173100 +2003,4,null,F,161431 +2003,4,null,M,169158 +2003,5,null,F,169450 +2003,5,null,M,177775 +2003,6,null,F,164323 +2003,6,null,M,173621 +2003,7,null,F,177755 +2003,7,null,M,187045 +2003,8,null,F,175697 +2003,8,null,M,184986 +2003,9,null,F,176270 +2003,9,null,M,183928 +2003,10,null,F,173659 +2003,10,null,M,180924 +2003,11,null,F,156860 +2003,11,null,M,163757 +2003,12,null,F,168146 +2003,12,null,M,175923 +2004,1,null,F,162630 +2004,1,null,M,170778 +2004,2,null,F,154712 +2004,2,null,M,161598 +2004,3,null,F,168958 +2004,3,null,M,177896 +2004,4,null,F,162918 +2004,4,null,M,170940 +2004,5,null,F,164266 +2004,5,null,M,173902 +2004,6,null,F,169006 +2004,6,null,M,176392 +2004,7,null,F,175457 +2004,7,null,M,184593 +2004,8,null,F,173980 +2004,8,null,M,182095 +2004,9,null,F,173996 +2004,9,null,M,182707 +2004,10,null,F,170816 +2004,10,null,M,178294 +2004,11,null,F,164364 +2004,11,null,M,171945 +2004,12,null,F,169607 +2004,12,null,M,177057 +2005,1,null,F,162360 +2005,1,null,M,169670 +2005,2,null,F,151342 +2005,2,null,M,158754 +2005,3,null,F,170000 +2005,3,null,M,179881 +2005,4,null,F,161982 +2005,4,null,M,171045 +2005,5,null,F,168949 +2005,5,null,M,177881 +2005,6,null,F,171467 +2005,6,null,M,179979 +2005,7,null,F,174639 +2005,7,null,M,183061 +2005,8,null,F,180446 +2005,8,null,M,189599 +2005,9,null,F,177973 +2005,9,null,M,186141 +2005,10,null,F,168795 +2005,10,null,M,176498 +2005,11,null,F,164606 +2005,11,null,M,171703 +2005,12,null,F,170333 +2005,12,null,M,178515 +2006,1,null,F,166706 +2006,1,null,M,174193 +2006,2,null,F,156281 +2006,2,null,M,163564 +2006,3,null,F,173924 +2006,3,null,M,183436 +2006,4,null,F,161054 +2006,4,null,M,169341 +2006,5,null,F,173374 +2006,5,null,M,182689 +2006,6,null,F,175037 +2006,6,null,M,183860 +2006,7,null,F,179507 +2006,7,null,M,189126 +2006,8,null,F,189539 +2006,8,null,M,198942 +2006,9,null,F,183523 +2006,9,null,M,191866 +2006,10,null,F,179938 +2006,10,null,M,188122 +2006,11,null,F,171819 +2006,11,null,M,180670 +2006,12,null,F,174255 +2006,12,null,M,182459 +2007,1,null,F,173771 +2007,1,null,M,181789 +2007,2,null,F,159887 +2007,2,null,M,167507 +2007,3,null,F,176426 +2007,3,null,M,184984 +2007,4,null,F,165121 +2007,4,null,M,173674 +2007,5,null,F,176902 +2007,5,null,M,186016 +2007,6,null,F,174757 +2007,6,null,M,184468 +2007,7,null,F,185221 +2007,7,null,M,195135 +2007,8,null,F,191495 +2007,8,null,M,199622 +2007,9,null,F,180098 +2007,9,null,M,187526 +2007,10,null,F,180912 +2007,10,null,M,189157 +2007,11,null,F,173513 +2007,11,null,M,180814 +2007,12,null,F,173787 +2007,12,null,M,181426 +2008,1,null,F,174255 +2008,1,null,M,182789 +2008,2,null,F,165669 +2008,2,null,M,173434 +2008,3,null,F,172053 +2008,3,null,M,179129 +2008,4,null,F,169585 +2008,4,null,M,177399 +2008,5,null,F,173141 +2008,5,null,M,182294 +2008,6,null,F,169958 +2008,6,null,M,179267 +2008,7,null,F,183391 +2008,7,null,M,192714 +2008,8,null,F,182713 +2008,8,null,M,191315 +2008,9,null,F,179696 +2008,9,null,M,188964 +2008,10,null,F,175314 +2008,10,null,M,183219 +2008,11,null,F,158939 +2008,11,null,M,165468 +2008,12,null,F,173215 +2008,12,null,M,181235 diff --git a/实验1/pands速查表.py b/实验1/pands速查表.py new file mode 100644 index 0000000..99ba9cb --- /dev/null +++ b/实验1/pands速查表.py @@ -0,0 +1,22 @@ +import pandas as pd +pop = pd.read_csv('.\state-population.csv') +areas = pd.read_csv('.\state-areas.csv') +abbrevs = pd.read_csv('.\state-abbrevs.csv') +# print(pop.head()) +# print(areas.head()) +# print(abbrevs.head()) +df = pd.DataFrame(pop) +a1 = df[df.population > 1125763] +a2 = df.drop_duplicates() +a3 = df.nsmallest(2, 'population') +a4 = df.drop(columns=['population']) +a5 = df.query('population == 1117489') +a6 = df.iloc[10:20] +a7 = df.loc[df['population'] > 10,['population', 'ages']] +a8 = df.iat[1, 2] +a9 = df.at[4, 'population'] +a10 =df['ages'].value_counts() +a11 = df.assign(Area=lambda df: df.population*2) +a12 = df.groupby(by="state/region") +print(a12.agg(min)) + diff --git a/实验1/state-abbrevs.csv b/实验1/state-abbrevs.csv new file mode 100644 index 0000000..6d4db36 --- /dev/null +++ b/实验1/state-abbrevs.csv @@ -0,0 +1,52 @@ +"state","abbreviation" +"Alabama","AL" +"Alaska","AK" +"Arizona","AZ" +"Arkansas","AR" +"California","CA" +"Colorado","CO" +"Connecticut","CT" +"Delaware","DE" +"District of Columbia","DC" +"Florida","FL" +"Georgia","GA" +"Hawaii","HI" +"Idaho","ID" +"Illinois","IL" +"Indiana","IN" +"Iowa","IA" +"Kansas","KS" +"Kentucky","KY" +"Louisiana","LA" +"Maine","ME" +"Montana","MT" +"Nebraska","NE" +"Nevada","NV" +"New Hampshire","NH" +"New Jersey","NJ" +"New Mexico","NM" +"New York","NY" +"North Carolina","NC" +"North Dakota","ND" +"Ohio","OH" +"Oklahoma","OK" +"Oregon","OR" +"Maryland","MD" +"Massachusetts","MA" +"Michigan","MI" +"Minnesota","MN" +"Mississippi","MS" +"Missouri","MO" +"Pennsylvania","PA" +"Rhode Island","RI" +"South Carolina","SC" +"South Dakota","SD" +"Tennessee","TN" +"Texas","TX" +"Utah","UT" +"Vermont","VT" +"Virginia","VA" +"Washington","WA" +"West Virginia","WV" +"Wisconsin","WI" +"Wyoming","WY" \ No newline at end of file diff --git a/实验1/state-areas.csv b/实验1/state-areas.csv new file mode 100644 index 0000000..322345c --- /dev/null +++ b/实验1/state-areas.csv @@ -0,0 +1,53 @@ +state,area (sq. mi) +Alabama,52423 +Alaska,656425 +Arizona,114006 +Arkansas,53182 +California,163707 +Colorado,104100 +Connecticut,5544 +Delaware,1954 +Florida,65758 +Georgia,59441 +Hawaii,10932 +Idaho,83574 +Illinois,57918 +Indiana,36420 +Iowa,56276 +Kansas,82282 +Kentucky,40411 +Louisiana,51843 +Maine,35387 +Maryland,12407 +Massachusetts,10555 +Michigan,96810 +Minnesota,86943 +Mississippi,48434 +Missouri,69709 +Montana,147046 +Nebraska,77358 +Nevada,110567 +New Hampshire,9351 +New Jersey,8722 +New Mexico,121593 +New York,54475 +North Carolina,53821 +North Dakota,70704 +Ohio,44828 +Oklahoma,69903 +Oregon,98386 +Pennsylvania,46058 +Rhode Island,1545 +South Carolina,32007 +South Dakota,77121 +Tennessee,42146 +Texas,268601 +Utah,84904 +Vermont,9615 +Virginia,42769 +Washington,71303 +West Virginia,24231 +Wisconsin,65503 +Wyoming,97818 +District of Columbia,68 +Puerto Rico,3515 diff --git a/实验1/state-population.csv b/实验1/state-population.csv new file mode 100644 index 0000000..c76110e --- /dev/null +++ b/实验1/state-population.csv @@ -0,0 +1,2545 @@ +state/region,ages,year,population +AL,under18,2012,1117489 +AL,total,2012,4817528 +AL,under18,2010,1130966 +AL,total,2010,4785570 +AL,under18,2011,1125763 +AL,total,2011,4801627 +AL,total,2009,4757938 +AL,under18,2009,1134192 +AL,under18,2013,1111481 +AL,total,2013,4833722 +AL,total,2007,4672840 +AL,under18,2007,1132296 +AL,total,2008,4718206 +AL,under18,2008,1134927 +AL,total,2005,4569805 +AL,under18,2005,1117229 +AL,total,2006,4628981 +AL,under18,2006,1126798 +AL,total,2004,4530729 +AL,under18,2004,1113662 +AL,total,2003,4503491 +AL,under18,2003,1113083 +AL,total,2001,4467634 +AL,under18,2001,1120409 +AL,total,2002,4480089 +AL,under18,2002,1116590 +AL,under18,1999,1121287 +AL,total,1999,4430141 +AL,total,2000,4452173 +AL,under18,2000,1122273 +AL,total,1998,4404701 +AL,under18,1998,1118252 +AL,under18,1997,1122893 +AL,total,1997,4367935 +AL,total,1996,4331103 +AL,total,1995,4296800 +AL,under18,1995,1110553 +AL,under18,1996,1112092 +AL,total,1994,4260229 +AL,total,1993,4214202 +AL,under18,1993,1085606 +AL,under18,1994,1097180 +AL,under18,1992,1072873 +AL,total,1992,4154014 +AL,total,1991,4099156 +AL,under18,1991,1060794 +AL,under18,1990,1050041 +AL,total,1990,4050055 +AK,total,1990,553290 +AK,under18,1990,177502 +AK,total,1992,588736 +AK,under18,1991,182180 +AK,under18,1992,184878 +AK,total,1994,603308 +AK,under18,1994,187439 +AK,total,1991,570193 +AK,total,1993,599434 +AK,under18,1993,187190 +AK,total,1995,604412 +AK,under18,1995,184990 +AK,total,1996,608569 +AK,under18,1996,185360 +AK,under18,1997,188280 +AK,under18,1998,192636 +AK,total,1998,619933 +AK,total,1997,612968 +AK,under18,1999,191422 +AK,total,1999,624779 +AK,total,2000,627963 +AK,under18,2000,190615 +AK,total,2001,633714 +AK,under18,2001,188771 +AK,total,2002,642337 +AK,under18,2002,188482 +AK,total,2003,648414 +AK,under18,2003,186843 +AK,total,2004,659286 +AK,under18,2004,186335 +AK,total,2005,666946 +AK,under18,2005,185304 +AK,total,2006,675302 +AK,under18,2006,185580 +AK,total,2007,680300 +AK,under18,2007,184344 +AK,total,2008,687455 +AK,under18,2008,183124 +AK,under18,2013,188132 +AK,total,2013,735132 +AK,total,2009,698895 +AK,under18,2009,186351 +AK,under18,2010,187902 +AK,total,2010,713868 +AK,under18,2011,188329 +AK,total,2011,723375 +AK,under18,2012,188162 +AK,total,2012,730307 +AZ,under18,2012,1617149 +AZ,total,2012,6551149 +AZ,under18,2011,1616353 +AZ,total,2011,6468796 +AZ,under18,2010,1628563 +AZ,total,2010,6408790 +AZ,under18,2013,1616814 +AZ,total,2013,6626624 +AZ,total,2009,6343154 +AZ,under18,2009,1627343 +AZ,total,2007,6167681 +AZ,under18,2007,1607895 +AZ,total,2008,6280362 +AZ,under18,2008,1628651 +AZ,total,2005,5839077 +AZ,under18,2005,1529168 +AZ,total,2006,6029141 +AZ,under18,2006,1574867 +AZ,total,2004,5652404 +AZ,under18,2004,1484454 +AZ,total,2003,5510364 +AZ,under18,2003,1453671 +AZ,total,2001,5273477 +AZ,under18,2001,1399015 +AZ,total,2002,5396255 +AZ,under18,2002,1427938 +AZ,under18,1999,1332396 +AZ,total,1999,5023823 +AZ,total,2000,5160586 +AZ,under18,2000,1373414 +AZ,total,1998,4883342 +AZ,under18,1998,1285794 +AZ,total,1997,4736990 +AZ,under18,1997,1237159 +AZ,under18,1996,1215285 +AZ,total,1996,4586940 +AZ,total,1995,4432499 +AZ,under18,1995,1173391 +AZ,total,1993,4065440 +AZ,under18,1993,1094233 +AZ,under18,1994,1119857 +AZ,total,1994,4245089 +AZ,under18,1992,1055572 +AZ,under18,1991,1028285 +AZ,total,1991,3788576 +AZ,total,1992,3915740 +AZ,under18,1990,1006040 +AZ,total,1990,3684097 +AR,under18,1990,620933 +AR,total,1990,2356586 +AR,total,1991,2383144 +AR,under18,1991,626212 +AR,under18,1992,638269 +AR,total,1992,2415984 +AR,under18,1994,653842 +AR,total,1994,2494019 +AR,total,1993,2456303 +AR,under18,1993,643474 +AR,under18,1995,667671 +AR,total,1995,2535399 +AR,under18,1996,677912 +AR,total,1996,2572109 +AR,under18,1998,683637 +AR,total,1997,2601091 +AR,under18,1997,680203 +AR,total,1998,2626289 +AR,total,2000,2678588 +AR,under18,2000,680378 +AR,under18,1999,681940 +AR,total,1999,2651860 +AR,total,2002,2705927 +AR,under18,2002,678798 +AR,total,2001,2691571 +AR,under18,2001,679606 +AR,total,2004,2749686 +AR,under18,2004,683166 +AR,total,2003,2724816 +AR,under18,2003,679579 +AR,total,2006,2821761 +AR,under18,2006,697842 +AR,total,2005,2781097 +AR,under18,2005,689787 +AR,total,2008,2874554 +AR,under18,2008,705725 +AR,total,2007,2848650 +AR,under18,2007,702737 +AR,total,2009,2896843 +AR,under18,2009,707886 +AR,under18,2013,709866 +AR,total,2013,2959373 +AR,under18,2011,710576 +AR,total,2011,2938506 +AR,under18,2010,711947 +AR,total,2010,2922280 +AR,under18,2012,710471 +AR,total,2012,2949828 +CA,under18,2012,9209007 +CA,total,2012,37999878 +CA,under18,2011,9252336 +CA,total,2011,37668681 +CA,under18,2010,9284094 +CA,total,2010,37333601 +CA,under18,2013,9174877 +CA,total,2013,38332521 +CA,total,2009,36961229 +CA,under18,2009,9294501 +CA,total,2007,36250311 +CA,under18,2007,9335620 +CA,total,2008,36604337 +CA,under18,2008,9321621 +CA,total,2005,35827943 +CA,under18,2005,9405565 +CA,total,2006,36021202 +CA,under18,2006,9370884 +CA,total,2003,35253159 +CA,under18,2003,9404594 +CA,total,2004,35574576 +CA,under18,2004,9418497 +CA,total,2001,34479458 +CA,under18,2001,9325466 +CA,total,2002,34871843 +CA,under18,2002,9365142 +CA,under18,1999,9207878 +CA,total,1999,33499204 +CA,total,2000,33987977 +CA,under18,2000,9267089 +CA,under18,1998,9163238 +CA,total,1998,32987675 +CA,under18,1997,9135359 +CA,total,1997,32486010 +CA,under18,1996,9079519 +CA,total,1996,32018834 +CA,total,1995,31696582 +CA,under18,1995,8920578 +CA,total,1993,31274928 +CA,under18,1993,8624810 +CA,under18,1994,8790058 +CA,total,1994,31484435 +CA,total,1991,30470736 +CA,under18,1991,8245605 +CA,under18,1992,8439647 +CA,total,1992,30974659 +CA,under18,1990,7980501 +CA,total,1990,29959515 +CO,total,1990,3307618 +CO,under18,1990,881640 +CO,total,1992,3495939 +CO,under18,1992,925577 +CO,under18,1991,896537 +CO,total,1991,3387119 +CO,total,1994,3724168 +CO,under18,1994,966412 +CO,under18,1993,947806 +CO,total,1993,3613734 +CO,under18,1995,984310 +CO,total,1995,3826653 +CO,total,1996,3919972 +CO,under18,1996,1003946 +CO,under18,1997,1030557 +CO,total,1997,4018293 +CO,total,1998,4116639 +CO,under18,1998,1060066 +CO,total,2000,4326921 +CO,under18,2000,1106676 +CO,total,1999,4226018 +CO,under18,1999,1083938 +CO,total,2002,4490406 +CO,under18,2002,1138273 +CO,total,2001,4425687 +CO,under18,2001,1126647 +CO,total,2004,4575013 +CO,under18,2004,1146369 +CO,total,2003,4528732 +CO,under18,2003,1144597 +CO,total,2006,4720423 +CO,under18,2006,1171832 +CO,total,2005,4631888 +CO,under18,2005,1156399 +CO,total,2008,4889730 +CO,under18,2008,1203289 +CO,total,2007,4803868 +CO,under18,2007,1189434 +CO,total,2009,4972195 +CO,under18,2009,1217213 +CO,under18,2013,1237932 +CO,total,2013,5268367 +CO,under18,2010,1226619 +CO,total,2010,5048196 +CO,under18,2011,1230178 +CO,total,2011,5118400 +CO,under18,2012,1232864 +CO,total,2012,5189458 +CT,under18,2012,794959 +CT,total,2012,3591765 +CT,under18,2011,805109 +CT,total,2011,3588948 +CT,under18,2010,814187 +CT,total,2010,3579210 +CT,under18,2013,785566 +CT,total,2013,3596080 +CT,total,2009,3561807 +CT,under18,2009,820839 +CT,total,2007,3527270 +CT,under18,2007,833484 +CT,total,2008,3545579 +CT,under18,2008,826626 +CT,total,2005,3506956 +CT,under18,2005,844034 +CT,total,2006,3517460 +CT,under18,2006,839372 +CT,total,2003,3484336 +CT,under18,2003,851115 +CT,total,2004,3496094 +CT,under18,2004,848979 +CT,total,2001,3432835 +CT,under18,2001,845850 +CT,total,2002,3458749 +CT,under18,2002,848877 +CT,total,1999,3386401 +CT,under18,1999,834654 +CT,total,2000,3411777 +CT,under18,2000,842242 +CT,under18,1998,824600 +CT,total,1998,3365352 +CT,total,1997,3349348 +CT,under18,1997,814373 +CT,under18,1996,811855 +CT,total,1996,3336685 +CT,total,1995,3324144 +CT,under18,1995,808623 +CT,total,1993,3309175 +CT,under18,1993,790749 +CT,under18,1994,801231 +CT,total,1994,3316121 +CT,under18,1991,766304 +CT,total,1991,3302895 +CT,under18,1992,777264 +CT,total,1992,3300712 +CT,total,1990,3291967 +CT,under18,1990,752666 +DE,under18,1990,165628 +DE,total,1990,669567 +DE,under18,1992,174166 +DE,total,1992,694927 +DE,total,1991,683080 +DE,under18,1991,169910 +DE,total,1994,717545 +DE,under18,1994,180833 +DE,total,1993,706378 +DE,under18,1993,176916 +DE,under18,1995,181736 +DE,total,1995,729735 +DE,total,1996,740978 +DE,under18,1996,184021 +DE,under18,1997,186607 +DE,total,1997,751487 +DE,total,1998,763335 +DE,under18,1998,189302 +DE,total,2000,786373 +DE,under18,2000,194914 +DE,total,1999,774990 +DE,under18,1999,192510 +DE,total,2002,806169 +DE,under18,2002,196946 +DE,total,2001,795699 +DE,under18,2001,196038 +DE,total,2004,830803 +DE,under18,2004,199631 +DE,total,2003,818003 +DE,under18,2003,198045 +DE,total,2006,859268 +DE,under18,2006,203729 +DE,total,2005,845150 +DE,under18,2005,201988 +DE,total,2008,883874 +DE,under18,2008,206116 +DE,total,2007,871749 +DE,under18,2007,205155 +DE,under18,2013,203558 +DE,total,2013,925749 +DE,total,2009,891730 +DE,under18,2009,206213 +DE,under18,2010,205478 +DE,total,2010,899711 +DE,under18,2011,204801 +DE,total,2011,907985 +DE,under18,2012,204586 +DE,total,2012,917053 +DC,under18,2012,107642 +DC,total,2012,633427 +DC,under18,2011,103906 +DC,total,2011,619624 +DC,under18,2010,101309 +DC,total,2010,605125 +DC,under18,2013,111474 +DC,total,2013,646449 +DC,total,2009,592228 +DC,under18,2009,102098 +DC,total,2007,574404 +DC,under18,2007,104126 +DC,total,2008,580236 +DC,under18,2008,102257 +DC,total,2005,567136 +DC,under18,2005,107187 +DC,total,2006,570681 +DC,under18,2006,105651 +DC,total,2003,568502 +DC,under18,2003,111403 +DC,total,2004,567754 +DC,under18,2004,109756 +DC,total,2001,574504 +DC,under18,2001,114625 +DC,total,2002,573158 +DC,under18,2002,113822 +DC,total,1999,570220 +DC,under18,1999,115003 +DC,total,2000,572046 +DC,under18,2000,114503 +DC,under18,1998,113839 +DC,total,1998,565232 +DC,under18,1997,119531 +DC,total,1997,567739 +DC,under18,1996,121210 +DC,total,1996,572379 +DC,total,1995,580519 +DC,under18,1995,123620 +DC,total,1993,595302 +DC,under18,1993,120471 +DC,under18,1994,122170 +DC,total,1994,589240 +DC,total,1991,600870 +DC,under18,1991,116825 +DC,under18,1992,118636 +DC,total,1992,597567 +DC,under18,1990,112632 +DC,total,1990,605321 +FL,total,1990,13033307 +FL,under18,1990,2988807 +FL,under18,1991,3045638 +FL,total,1991,13369798 +FL,total,1994,14239444 +FL,under18,1994,3299887 +FL,under18,1993,3214066 +FL,total,1993,13927185 +FL,total,1992,13650553 +FL,under18,1992,3120439 +FL,under18,1995,3366468 +FL,total,1995,14537875 +FL,total,1996,14853360 +FL,under18,1996,3431695 +FL,under18,1998,3557561 +FL,under18,1997,3502269 +FL,total,1997,15186304 +FL,total,1998,15486559 +FL,total,1999,15759421 +FL,under18,1999,3611711 +FL,total,2000,16047515 +FL,under18,2000,3654880 +FL,total,2001,16356966 +FL,under18,2001,3714439 +FL,total,2002,16689370 +FL,under18,2002,3774624 +FL,total,2003,17004085 +FL,under18,2003,3820876 +FL,total,2004,17415318 +FL,under18,2004,3890734 +FL,total,2005,17842038 +FL,under18,2005,3968178 +FL,total,2006,18166990 +FL,under18,2006,4022912 +FL,total,2007,18367842 +FL,under18,2007,4031098 +FL,total,2008,18527305 +FL,under18,2008,4018372 +FL,total,2009,18652644 +FL,under18,2009,3997283 +FL,under18,2013,4026674 +FL,total,2013,19552860 +FL,under18,2010,3999532 +FL,total,2010,18846054 +FL,under18,2011,4002550 +FL,total,2011,19083482 +FL,under18,2012,4012421 +FL,total,2012,19320749 +GA,total,2012,9915646 +GA,under18,2012,2487831 +GA,under18,2011,2488898 +GA,total,2011,9810181 +GA,under18,2010,2490884 +GA,total,2010,9713248 +GA,total,2013,9992167 +GA,total,2009,9620846 +GA,under18,2009,2485781 +GA,under18,2013,2489709 +GA,total,2007,9349988 +GA,under18,2007,2456249 +GA,total,2008,9504843 +GA,under18,2008,2479097 +GA,total,2005,8925922 +GA,under18,2005,2353604 +GA,total,2006,9155813 +GA,under18,2006,2406014 +GA,total,2003,8622793 +GA,under18,2003,2278710 +GA,total,2004,8769252 +GA,under18,2004,2308855 +GA,total,2001,8377038 +GA,under18,2001,2215390 +GA,total,2002,8508256 +GA,under18,2002,2249784 +GA,total,1999,8045965 +GA,under18,1999,2130698 +GA,total,2000,8227303 +GA,under18,2000,2176576 +GA,total,1997,7685099 +GA,under18,1997,2034163 +GA,under18,1998,2078998 +GA,total,1998,7863536 +GA,under18,1996,1993171 +GA,total,1996,7501069 +GA,total,1995,7328413 +GA,under18,1995,1949818 +GA,under18,1992,1817781 +GA,total,1992,6817203 +GA,total,1993,6978240 +GA,under18,1993,1865021 +GA,under18,1994,1906539 +GA,total,1994,7157165 +GA,total,1991,6653005 +GA,under18,1991,1773675 +GA,under18,1990,1747363 +GA,total,1990,6512602 +HI,under18,1990,279983 +HI,total,1990,1113491 +HI,total,1991,1136754 +HI,under18,1991,287871 +HI,under18,1994,307517 +HI,total,1994,1187536 +HI,total,1993,1172838 +HI,under18,1993,301473 +HI,under18,1992,295124 +HI,total,1992,1158613 +HI,total,1995,1196854 +HI,under18,1995,310325 +HI,under18,1996,311213 +HI,total,1996,1203755 +HI,under18,1998,304576 +HI,total,1998,1215233 +HI,total,1997,1211640 +HI,under18,1997,309465 +HI,total,2000,1213519 +HI,under18,2000,295352 +HI,total,1999,1210300 +HI,under18,1999,299680 +HI,total,2002,1239613 +HI,under18,2002,293600 +HI,total,2001,1225948 +HI,under18,2001,294133 +HI,total,2004,1273569 +HI,under18,2004,298103 +HI,total,2003,1251154 +HI,under18,2003,294519 +HI,total,2006,1309731 +HI,under18,2006,299313 +HI,total,2005,1292729 +HI,under18,2005,298497 +HI,total,2008,1332213 +HI,under18,2008,301094 +HI,total,2007,1315675 +HI,under18,2007,300207 +HI,under18,2013,307266 +HI,total,2009,1346717 +HI,under18,2009,302796 +HI,total,2013,1404054 +HI,total,2010,1363731 +HI,under18,2010,303812 +HI,total,2011,1376897 +HI,under18,2011,305396 +HI,under18,2012,305981 +HI,total,2012,1390090 +ID,total,2012,1595590 +ID,under18,2012,427177 +ID,under18,2011,428535 +ID,total,2011,1583930 +ID,under18,2010,428961 +ID,total,2010,1570718 +ID,total,2013,1612136 +ID,total,2009,1554439 +ID,under18,2009,426076 +ID,under18,2013,427781 +ID,total,2007,1505105 +ID,under18,2007,415024 +ID,total,2008,1534320 +ID,under18,2008,422347 +ID,total,2005,1428241 +ID,under18,2005,394651 +ID,total,2006,1468669 +ID,under18,2006,404753 +ID,total,2003,1363380 +ID,under18,2003,379241 +ID,total,2004,1391802 +ID,under18,2004,384692 +ID,total,2001,1319962 +ID,under18,2001,373145 +ID,total,2002,1340372 +ID,under18,2002,375986 +ID,total,1999,1275674 +ID,under18,1999,366689 +ID,total,2000,1299430 +ID,under18,2000,370430 +ID,total,1997,1228520 +ID,under18,1997,357779 +ID,under18,1998,362189 +ID,total,1998,1252330 +ID,under18,1996,353824 +ID,total,1996,1203083 +ID,total,1995,1177322 +ID,under18,1995,349248 +ID,under18,1992,324972 +ID,total,1992,1071685 +ID,total,1993,1108768 +ID,under18,1993,333838 +ID,under18,1994,344242 +ID,total,1994,1145140 +ID,total,1991,1041316 +ID,under18,1991,316732 +ID,under18,1990,313373 +ID,total,1990,1012384 +IL,under18,1990,2940837 +IL,total,1990,11453316 +IL,total,1991,11568964 +IL,under18,1991,2988715 +IL,under18,1994,3110938 +IL,total,1994,11912585 +IL,total,1993,11809579 +IL,under18,1993,3066541 +IL,under18,1992,3033427 +IL,total,1992,11694184 +IL,total,1995,12008437 +IL,under18,1995,3152984 +IL,under18,1996,3192916 +IL,total,1996,12101997 +IL,under18,1998,3225252 +IL,total,1998,12271847 +IL,total,1997,12185715 +IL,under18,1997,3222114 +IL,total,2000,12434161 +IL,under18,2000,3244944 +IL,total,1999,12359020 +IL,under18,1999,3240034 +IL,total,2002,12525556 +IL,under18,2002,3238362 +IL,total,2001,12488445 +IL,under18,2001,3243617 +IL,total,2004,12589773 +IL,under18,2004,3211599 +IL,total,2003,12556006 +IL,under18,2003,3225547 +IL,total,2006,12643955 +IL,under18,2006,3181246 +IL,total,2005,12609903 +IL,under18,2005,3197318 +IL,total,2008,12747038 +IL,under18,2008,3153401 +IL,total,2007,12695866 +IL,under18,2007,3170134 +IL,under18,2013,3023307 +IL,total,2009,12796778 +IL,under18,2009,3138406 +IL,total,2013,12882135 +IL,total,2010,12839695 +IL,under18,2010,3122092 +IL,total,2011,12855970 +IL,under18,2011,3089833 +IL,under18,2012,3057042 +IL,total,2012,12868192 +IN,total,2012,6537782 +IN,under18,2012,1589655 +IN,under18,2011,1598091 +IN,total,2011,6516336 +IN,under18,2010,1605883 +IN,total,2010,6489965 +IN,total,2013,6570902 +IN,total,2009,6459325 +IN,under18,2009,1609704 +IN,under18,2013,1586027 +IN,total,2007,6379599 +IN,under18,2007,1609494 +IN,total,2008,6424806 +IN,under18,2008,1611494 +IN,total,2005,6278616 +IN,under18,2005,1593898 +IN,total,2006,6332669 +IN,under18,2006,1603107 +IN,total,2003,6196638 +IN,under18,2003,1582560 +IN,total,2004,6233007 +IN,under18,2004,1586281 +IN,total,2001,6127760 +IN,under18,2001,1579527 +IN,total,2002,6155967 +IN,under18,2002,1580814 +IN,total,1999,6044970 +IN,under18,1999,1566079 +IN,total,2000,6091866 +IN,under18,2000,1574989 +IN,total,1997,5955267 +IN,under18,1997,1539270 +IN,under18,1998,1551960 +IN,total,1998,5998881 +IN,under18,1996,1517961 +IN,total,1996,5906013 +IN,total,1995,5851459 +IN,under18,1995,1507916 +IN,under18,1992,1461650 +IN,total,1992,5674547 +IN,total,1993,5739019 +IN,under18,1993,1473007 +IN,under18,1994,1491802 +IN,total,1994,5793526 +IN,total,1991,5616388 +IN,under18,1991,1450759 +IN,under18,1990,1437209 +IN,total,1990,5557798 +IA,under18,1990,719366 +IA,total,1990,2781018 +IA,total,1991,2797613 +IA,under18,1991,724446 +IA,under18,1994,728397 +IA,total,1994,2850746 +IA,total,1993,2836972 +IA,under18,1993,727751 +IA,under18,1992,724798 +IA,total,1992,2818401 +IA,total,1995,2867373 +IA,under18,1995,726961 +IA,under18,1996,729177 +IA,total,1996,2880001 +IA,under18,1998,729943 +IA,total,1998,2902872 +IA,total,1997,2891119 +IA,under18,1997,729806 +IA,total,2000,2929067 +IA,under18,2000,733337 +IA,total,1999,2917634 +IA,under18,1999,732671 +IA,total,2002,2934234 +IA,under18,2002,723685 +IA,total,2001,2931997 +IA,under18,2001,728601 +IA,total,2004,2953635 +IA,under18,2004,718708 +IA,total,2003,2941999 +IA,under18,2003,720102 +IA,total,2006,2982644 +IA,under18,2006,721703 +IA,total,2005,2964454 +IA,under18,2005,718488 +IA,total,2008,3016734 +IA,under18,2008,725658 +IA,total,2007,2999212 +IA,under18,2007,723632 +IA,under18,2013,724032 +IA,total,2009,3032870 +IA,under18,2009,726969 +IA,total,2013,3090416 +IA,total,2010,3050314 +IA,under18,2010,727717 +IA,total,2011,3064102 +IA,under18,2011,725522 +IA,under18,2012,723917 +IA,total,2012,3075039 +KS,total,2012,2885398 +KS,under18,2012,726668 +KS,under18,2011,726787 +KS,total,2011,2869548 +KS,under18,2010,727729 +KS,total,2010,2858910 +KS,total,2013,2893957 +KS,total,2009,2832704 +KS,under18,2009,721841 +KS,under18,2013,724092 +KS,total,2007,2783785 +KS,under18,2007,711005 +KS,total,2008,2808076 +KS,under18,2008,714689 +KS,total,2005,2745299 +KS,under18,2005,704689 +KS,total,2006,2762931 +KS,under18,2006,705277 +KS,total,2003,2723004 +KS,under18,2003,707847 +KS,total,2004,2734373 +KS,under18,2004,705456 +KS,total,2001,2702162 +KS,under18,2001,710923 +KS,total,2002,2713535 +KS,under18,2002,709416 +KS,total,1999,2678338 +KS,under18,1999,713022 +KS,total,2000,2693681 +KS,under18,2000,713887 +KS,total,1997,2635292 +KS,under18,1997,704001 +KS,under18,1998,710402 +KS,total,1998,2660598 +KS,under18,1996,696298 +KS,total,1996,2614554 +KS,total,1995,2601008 +KS,under18,1995,694124 +KS,under18,1992,680871 +KS,total,1992,2532395 +KS,total,1993,2556547 +KS,under18,1993,687262 +KS,under18,1994,693673 +KS,total,1994,2580513 +KS,total,1991,2498722 +KS,under18,1991,672033 +KS,under18,1990,662641 +KS,total,1990,2481349 +KY,under18,1990,945951 +KY,total,1990,3694048 +KY,total,1991,3722328 +KY,under18,1991,951512 +KY,under18,1994,981439 +KY,total,1994,3849088 +KY,total,1993,3812206 +KY,under18,1993,971134 +KY,under18,1992,963861 +KY,total,1992,3765469 +KY,total,1995,3887427 +KY,under18,1995,984486 +KY,under18,1996,987062 +KY,total,1996,3919536 +KY,under18,1998,997296 +KY,total,1998,3985391 +KY,total,1997,3952747 +KY,under18,1997,1002609 +KY,total,2000,4049021 +KY,under18,2000,994984 +KY,total,1999,4018053 +KY,under18,1999,996382 +KY,total,2002,4089875 +KY,under18,2002,995251 +KY,total,2001,4068132 +KY,under18,2001,994105 +KY,total,2004,4146101 +KY,under18,2004,998459 +KY,total,2003,4117170 +KY,under18,2003,998485 +KY,total,2006,4219239 +KY,under18,2006,1011295 +KY,total,2005,4182742 +KY,under18,2005,1004020 +KY,total,2008,4289878 +KY,under18,2008,1022001 +KY,total,2007,4256672 +KY,under18,2007,1016288 +KY,under18,2013,1014004 +KY,total,2009,4317074 +KY,under18,2009,1021710 +KY,total,2013,4395295 +KY,total,2010,4347698 +KY,under18,2010,1023679 +KY,total,2011,4366869 +KY,under18,2011,1021926 +KY,under18,2012,1017350 +KY,total,2012,4379730 +LA,total,2012,4602134 +LA,under18,2012,1114620 +LA,under18,2011,1116579 +LA,total,2011,4575197 +LA,under18,2010,1118576 +LA,total,2010,4545392 +LA,total,2013,4625470 +LA,total,2009,4491648 +LA,under18,2009,1114228 +LA,under18,2013,1112957 +LA,total,2007,4375581 +LA,under18,2007,1096642 +LA,total,2008,4435586 +LA,under18,2008,1108728 +LA,total,2005,4576628 +LA,under18,2005,1177954 +LA,total,2006,4302665 +LA,under18,2006,1078779 +LA,total,2003,4521042 +LA,under18,2003,1188070 +LA,total,2004,4552238 +LA,under18,2004,1182731 +LA,total,2001,4477875 +LA,under18,2001,1204187 +LA,total,2002,4497267 +LA,under18,2002,1194819 +LA,total,2000,4471885 +LA,under18,2000,1217670 +LA,total,1999,4460811 +LA,under18,1999,1227167 +LA,total,1997,4421072 +LA,under18,1997,1239665 +LA,under18,1998,1232984 +LA,total,1998,4440344 +LA,under18,1996,1244627 +LA,total,1996,4398877 +LA,total,1995,4378779 +LA,under18,1995,1250112 +LA,under18,1992,1237034 +LA,total,1992,4293003 +LA,total,1993,4316428 +LA,under18,1993,1239161 +LA,under18,1994,1247631 +LA,total,1994,4347481 +LA,total,1991,4253279 +LA,under18,1991,1222330 +LA,under18,1990,1205984 +LA,total,1990,4221532 +ME,under18,1990,308066 +ME,total,1990,1231719 +ME,total,1991,1237081 +ME,under18,1991,309871 +ME,under18,1994,311570 +ME,total,1994,1242662 +ME,total,1993,1242302 +ME,under18,1993,310966 +ME,under18,1992,310679 +ME,total,1992,1238508 +ME,total,1995,1243481 +ME,under18,1995,309173 +ME,under18,1996,307740 +ME,total,1996,1249060 +ME,under18,1998,304496 +ME,total,1998,1259127 +ME,total,1997,1254774 +ME,under18,1997,305097 +ME,total,1999,1266808 +ME,under18,1999,302321 +ME,total,2000,1277072 +ME,under18,2000,301407 +ME,total,2002,1295960 +ME,under18,2002,298595 +ME,total,2001,1285692 +ME,under18,2001,300088 +ME,total,2004,1313688 +ME,under18,2004,294791 +ME,total,2003,1306513 +ME,under18,2003,296786 +ME,total,2006,1323619 +ME,under18,2006,288945 +ME,total,2005,1318787 +ME,under18,2005,292039 +ME,total,2008,1330509 +ME,under18,2008,282204 +ME,total,2007,1327040 +ME,under18,2007,286185 +ME,under18,2013,261276 +ME,total,2009,1329590 +ME,under18,2009,277946 +ME,total,2013,1328302 +ME,total,2010,1327366 +ME,under18,2010,273061 +ME,total,2011,1327844 +ME,under18,2011,268737 +ME,under18,2012,264846 +ME,total,2012,1328501 +MD,total,2012,5884868 +MD,under18,2012,1346235 +MD,under18,2011,1348766 +MD,total,2011,5840241 +MD,under18,2010,1351983 +MD,total,2010,5787193 +MD,total,2013,5928814 +MD,total,2009,5730388 +MD,under18,2009,1353631 +MD,under18,2013,1344522 +MD,total,2007,5653408 +MD,under18,2007,1369563 +MD,total,2008,5684965 +MD,under18,2008,1359214 +MD,total,2005,5592379 +MD,under18,2005,1382966 +MD,total,2006,5627367 +MD,under18,2006,1377756 +MD,total,2003,5496269 +MD,under18,2003,1379641 +MD,total,2004,5546935 +MD,under18,2004,1383450 +MD,total,2001,5374691 +MD,under18,2001,1366552 +MD,total,2002,5440389 +MD,under18,2002,1375354 +MD,total,2000,5311034 +MD,under18,2000,1356961 +MD,total,1999,5254509 +MD,under18,1999,1348659 +MD,total,1997,5157328 +MD,under18,1997,1321306 +MD,under18,1998,1338727 +MD,total,1998,5204464 +MD,under18,1996,1303816 +MD,total,1996,5111986 +MD,total,1995,5070033 +MD,under18,1995,1300695 +MD,under18,1992,1235498 +MD,total,1992,4923369 +MD,total,1993,4971889 +MD,under18,1993,1261738 +MD,under18,1994,1280772 +MD,total,1994,5023060 +MD,total,1991,4867641 +MD,under18,1991,1208898 +MD,under18,1990,1180426 +MD,total,1990,4799770 +MA,under18,1990,1353806 +MA,total,1990,6022639 +MA,total,1991,6018470 +MA,under18,1991,1375110 +MA,under18,1994,1437069 +MA,total,1994,6095241 +MA,total,1993,6060569 +MA,under18,1993,1415724 +MA,under18,1992,1390188 +MA,total,1992,6028709 +MA,total,1995,6141445 +MA,under18,1995,1453489 +MA,under18,1996,1468614 +MA,total,1996,6179756 +MA,under18,1998,1491652 +MA,total,1998,6271838 +MA,total,1997,6226058 +MA,under18,1997,1478203 +MA,total,1999,6317345 +MA,under18,1999,1495818 +MA,total,2000,6361104 +MA,under18,2000,1501334 +MA,total,2001,6397634 +MA,under18,2001,1505028 +MA,total,2002,6417206 +MA,under18,2002,1502652 +MA,total,2004,6412281 +MA,under18,2004,1479541 +MA,total,2003,6422565 +MA,under18,2003,1493372 +MA,total,2006,6410084 +MA,under18,2006,1450202 +MA,total,2005,6403290 +MA,under18,2005,1464140 +MA,total,2008,6468967 +MA,under18,2008,1429727 +MA,total,2007,6431559 +MA,under18,2007,1439757 +MA,under18,2013,1393946 +MA,total,2009,6517613 +MA,under18,2009,1422935 +MA,total,2013,6692824 +MA,total,2010,6563263 +MA,under18,2010,1415962 +MA,total,2011,6606285 +MA,under18,2011,1407240 +MA,under18,2012,1399417 +MA,total,2012,6645303 +MI,total,2012,9882519 +MI,under18,2012,2269365 +MI,under18,2011,2299116 +MI,total,2011,9874589 +MI,under18,2010,2333121 +MI,total,2010,9876149 +MI,total,2013,9895622 +MI,total,2009,9901591 +MI,under18,2009,2372603 +MI,under18,2013,2245201 +MI,total,2007,10001284 +MI,under18,2007,2470063 +MI,total,2008,9946889 +MI,under18,2008,2418879 +MI,total,2005,10051137 +MI,under18,2005,2531839 +MI,total,2006,10036081 +MI,under18,2006,2503548 +MI,total,2003,10041152 +MI,under18,2003,2569080 +MI,total,2004,10055315 +MI,under18,2004,2553314 +MI,total,2002,10015710 +MI,under18,2002,2584310 +MI,total,2001,9991120 +MI,under18,2001,2593310 +MI,total,2000,9952450 +MI,under18,2000,2596114 +MI,total,1999,9897116 +MI,under18,1999,2591944 +MI,total,1997,9809051 +MI,under18,1997,2582270 +MI,under18,1998,2586343 +MI,total,1998,9847942 +MI,under18,1996,2569745 +MI,total,1996,9758645 +MI,total,1995,9676211 +MI,under18,1995,2556799 +MI,under18,1992,2501765 +MI,total,1992,9479065 +MI,total,1993,9540114 +MI,under18,1993,2522249 +MI,under18,1994,2535196 +MI,total,1994,9597737 +MI,total,1991,9400446 +MI,under18,1991,2484957 +MI,under18,1990,2459633 +MI,total,1990,9311319 +MN,under18,1990,1176680 +MN,total,1990,4389857 +MN,total,1991,4440859 +MN,under18,1991,1191207 +MN,under18,1994,1238949 +MN,total,1994,4610355 +MN,total,1993,4555956 +MN,under18,1993,1226723 +MN,under18,1992,1213068 +MN,total,1992,4495572 +MN,total,1995,4660180 +MN,under18,1995,1245932 +MN,under18,1996,1252722 +MN,total,1996,4712827 +MN,under18,1998,1275940 +MN,total,1998,4813412 +MN,total,1997,4763390 +MN,under18,1997,1264250 +MN,total,1999,4873481 +MN,under18,1999,1283102 +MN,total,2000,4933692 +MN,under18,2000,1289715 +MN,total,2001,4982796 +MN,under18,2001,1291261 +MN,total,2002,5018935 +MN,under18,2002,1288795 +MN,total,2004,5087713 +MN,under18,2004,1281946 +MN,total,2003,5053572 +MN,under18,2003,1283687 +MN,total,2006,5163555 +MN,under18,2006,1282381 +MN,total,2005,5119598 +MN,under18,2005,1280557 +MN,total,2008,5247018 +MN,under18,2008,1284179 +MN,total,2007,5207203 +MN,under18,2007,1285074 +MN,under18,2013,1279111 +MN,total,2009,5281203 +MN,under18,2009,1284103 +MN,total,2013,5420380 +MN,total,2010,5310337 +MN,under18,2010,1282693 +MN,total,2011,5347108 +MN,under18,2011,1280424 +MN,under18,2012,1278050 +MN,total,2012,5379646 +MS,total,2012,2986450 +MS,under18,2012,742941 +MS,under18,2011,747742 +MS,total,2011,2977886 +MS,under18,2010,754111 +MS,total,2010,2970047 +MS,total,2013,2991207 +MS,total,2009,2958774 +MS,under18,2009,758539 +MS,under18,2013,737432 +MS,total,2007,2928350 +MS,under18,2007,761171 +MS,total,2008,2947806 +MS,under18,2008,760572 +MS,total,2005,2905943 +MS,under18,2005,760870 +MS,total,2006,2904978 +MS,under18,2006,756990 +MS,total,2003,2868312 +MS,under18,2003,759447 +MS,total,2004,2889010 +MS,under18,2004,760410 +MS,total,2002,2858681 +MS,under18,2002,763148 +MS,total,2001,2852994 +MS,under18,2001,768418 +MS,total,2000,2848353 +MS,under18,2000,774353 +MS,total,1999,2828408 +MS,under18,1999,775662 +MS,total,1997,2777004 +MS,under18,1997,774832 +MS,under18,1998,773721 +MS,total,1998,2804834 +MS,under18,1996,769680 +MS,total,1996,2748085 +MS,total,1995,2722659 +MS,under18,1995,767892 +MS,under18,1992,750224 +MS,total,1992,2623734 +MS,total,1993,2655100 +MS,under18,1993,755820 +MS,under18,1994,763795 +MS,total,1994,2688992 +MS,total,1991,2598733 +MS,under18,1991,738911 +MS,under18,1990,733660 +MS,total,1990,2578897 +MO,under18,1990,1316423 +MO,total,1990,5128880 +MO,total,1991,5170800 +MO,under18,1991,1332306 +MO,under18,1994,1378700 +MO,total,1994,5324497 +MO,total,1993,5271175 +MO,under18,1993,1365903 +MO,under18,1992,1349729 +MO,total,1992,5217101 +MO,under18,1996,1408732 +MO,total,1996,5431553 +MO,total,1995,5378247 +MO,under18,1995,1393554 +MO,under18,1998,1428999 +MO,total,1998,5521765 +MO,total,1997,5481193 +MO,under18,1997,1419837 +MO,total,1999,5561948 +MO,under18,1999,1428047 +MO,total,2000,5607285 +MO,under18,2000,1428383 +MO,total,2001,5641142 +MO,under18,2001,1426575 +MO,total,2002,5674825 +MO,under18,2002,1424513 +MO,total,2004,5747741 +MO,under18,2004,1420956 +MO,total,2003,5709403 +MO,under18,2003,1421927 +MO,total,2006,5842704 +MO,under18,2006,1428324 +MO,total,2005,5790300 +MO,under18,2005,1422978 +MO,total,2008,5923916 +MO,under18,2008,1428945 +MO,total,2007,5887612 +MO,under18,2007,1431346 +MO,under18,2013,1397685 +MO,total,2009,5961088 +MO,under18,2009,1426603 +MO,total,2013,6044171 +MO,total,2010,5996063 +MO,under18,2010,1424042 +MO,total,2011,6010065 +MO,under18,2011,1414444 +MO,under18,2012,1405015 +MO,total,2012,6024522 +MT,total,2012,1005494 +MT,under18,2012,222905 +MT,under18,2011,222977 +MT,total,2011,997600 +MT,under18,2010,223292 +MT,total,2010,990527 +MT,total,2013,1015165 +MT,total,2009,983982 +MT,under18,2009,223675 +MT,under18,2013,223981 +MT,total,2007,964706 +MT,under18,2007,223135 +MT,total,2008,976415 +MT,under18,2008,223814 +MT,total,2005,940102 +MT,under18,2005,221685 +MT,total,2006,952692 +MT,under18,2006,221930 +MT,total,2003,919630 +MT,under18,2003,223012 +MT,total,2004,930009 +MT,under18,2004,221999 +MT,total,2002,911667 +MT,under18,2002,224772 +MT,total,2001,906961 +MT,under18,2001,227118 +MT,total,1999,897508 +MT,under18,1999,231133 +MT,total,2000,903773 +MT,under18,2000,230067 +MT,total,1997,889865 +MT,under18,1997,232813 +MT,under18,1998,231746 +MT,total,1998,892431 +MT,total,1995,876553 +MT,under18,1995,236583 +MT,under18,1996,235294 +MT,total,1996,886254 +MT,under18,1992,230868 +MT,total,1992,825770 +MT,total,1993,844761 +MT,under18,1993,234987 +MT,under18,1994,237289 +MT,total,1994,861306 +MT,total,1991,809680 +MT,under18,1991,225259 +MT,under18,1990,223677 +MT,total,1990,800204 +NE,under18,1990,430068 +NE,total,1990,1581660 +NE,total,1991,1595919 +NE,under18,1991,434525 +NE,under18,1994,442589 +NE,total,1994,1639041 +NE,total,1993,1625590 +NE,under18,1993,439313 +NE,under18,1992,436378 +NE,total,1992,1611687 +NE,under18,1996,446841 +NE,total,1996,1673740 +NE,total,1995,1656993 +NE,under18,1995,444418 +NE,under18,1998,451192 +NE,total,1998,1695817 +NE,total,1997,1686418 +NE,under18,1997,450076 +NE,total,1999,1704764 +NE,under18,1999,451047 +NE,total,2000,1713820 +NE,under18,2000,450380 +NE,total,2001,1719836 +NE,under18,2001,448307 +NE,total,2002,1728292 +NE,under18,2002,447714 +NE,total,2004,1749370 +NE,under18,2004,448360 +NE,total,2003,1738643 +NE,under18,2003,447444 +NE,total,2006,1772693 +NE,under18,2006,450098 +NE,total,2005,1761497 +NE,under18,2005,448918 +NE,total,2008,1796378 +NE,under18,2008,453787 +NE,total,2007,1783440 +NE,under18,2007,451946 +NE,under18,2013,464348 +NE,total,2009,1812683 +NE,under18,2009,456543 +NE,total,2013,1868516 +NE,total,2010,1829838 +NE,under18,2010,459621 +NE,total,2011,1841749 +NE,under18,2011,460872 +NE,under18,2012,462673 +NE,total,2012,1855350 +NV,total,2012,2754354 +NV,under18,2012,659655 +NV,under18,2011,659236 +NV,total,2011,2717951 +NV,under18,2010,663180 +NV,total,2010,2703230 +NV,total,2013,2790136 +NV,total,2009,2684665 +NV,under18,2009,666041 +NV,under18,2013,661605 +NV,total,2007,2601072 +NV,under18,2007,654053 +NV,total,2008,2653630 +NV,under18,2008,662621 +NV,total,2005,2432143 +NV,under18,2005,611595 +NV,total,2006,2522658 +NV,under18,2006,634403 +NV,total,2003,2248850 +NV,under18,2003,568963 +NV,total,2004,2346222 +NV,under18,2004,591314 +NV,total,2002,2173791 +NV,under18,2002,552816 +NV,total,2001,2098399 +NV,under18,2001,534708 +NV,total,1999,1934718 +NV,under18,1999,493701 +NV,total,2000,2018741 +NV,under18,2000,516018 +NV,total,1997,1764104 +NV,under18,1997,443626 +NV,under18,1998,469424 +NV,total,1998,1853192 +NV,total,1995,1581578 +NV,under18,1995,396223 +NV,under18,1996,419133 +NV,total,1996,1666320 +NV,under18,1992,337396 +NV,total,1992,1351367 +NV,total,1993,1411215 +NV,under18,1993,354990 +NV,under18,1994,376745 +NV,total,1994,1499298 +NV,total,1991,1296172 +NV,under18,1991,325033 +NV,under18,1990,316406 +NV,total,1990,1220695 +NH,under18,1990,277454 +NH,total,1990,1112384 +NH,total,1991,1109929 +NH,under18,1991,281127 +NH,under18,1994,295563 +NH,total,1994,1142561 +NH,total,1993,1129458 +NH,under18,1993,290409 +NH,under18,1992,286314 +NH,total,1992,1117785 +NH,under18,1996,300161 +NH,total,1996,1174719 +NH,total,1995,1157561 +NH,under18,1995,298246 +NH,under18,1998,307292 +NH,total,1998,1205941 +NH,total,1997,1189425 +NH,under18,1997,302834 +NH,total,2000,1239882 +NH,under18,2000,310352 +NH,total,1999,1222015 +NH,under18,1999,308423 +NH,total,2001,1255517 +NH,under18,2001,311877 +NH,total,2002,1269089 +NH,under18,2002,312743 +NH,total,2004,1290121 +NH,under18,2004,309243 +NH,total,2003,1279840 +NH,under18,2003,311412 +NH,total,2005,1298492 +NH,under18,2005,307403 +NH,total,2006,1308389 +NH,under18,2006,305169 +NH,total,2008,1315906 +NH,under18,2008,296029 +NH,total,2007,1312540 +NH,under18,2007,300918 +NH,under18,2013,271122 +NH,total,2009,1316102 +NH,under18,2009,290850 +NH,total,2013,1323459 +NH,total,2010,1316614 +NH,under18,2010,285702 +NH,total,2011,1318075 +NH,under18,2011,280486 +NH,under18,2012,275818 +NH,total,2012,1321617 +NJ,total,2012,8867749 +NJ,under18,2012,2035106 +NJ,under18,2011,2049453 +NJ,total,2011,8836639 +NJ,under18,2010,2062013 +NJ,total,2010,8802707 +NJ,total,2013,8899339 +NJ,total,2009,8755602 +NJ,under18,2009,2068684 +NJ,under18,2013,2022117 +NJ,total,2007,8677885 +NJ,under18,2007,2091023 +NJ,total,2008,8711090 +NJ,under18,2008,2076366 +NJ,total,2006,8661679 +NJ,under18,2006,2106403 +NJ,total,2005,8651974 +NJ,under18,2005,2121878 +NJ,total,2003,8601402 +NJ,under18,2003,2126014 +NJ,total,2004,8634561 +NJ,under18,2004,2129051 +NJ,total,2002,8552643 +NJ,under18,2002,2116591 +NJ,total,2001,8492671 +NJ,under18,2001,2102838 +NJ,total,1999,8359592 +NJ,under18,1999,2066678 +NJ,total,2000,8430621 +NJ,under18,2000,2088885 +NJ,total,1997,8218808 +NJ,under18,1997,2028349 +NJ,under18,1998,2042080 +NJ,total,1998,8287418 +NJ,total,1995,8083242 +NJ,under18,1995,1997187 +NJ,under18,1996,2016502 +NJ,total,1996,8149596 +NJ,under18,1992,1890108 +NJ,total,1992,7880508 +NJ,total,1993,7948915 +NJ,under18,1993,1928623 +NJ,under18,1994,1968232 +NJ,total,1994,8014306 +NJ,total,1991,7814676 +NJ,under18,1991,1849605 +NJ,under18,1990,1818187 +NJ,total,1990,7762963 +NM,total,1990,1521574 +NM,under18,1990,453538 +NM,under18,1991,461811 +NM,total,1991,1555305 +NM,under18,1994,497542 +NM,under18,1993,487742 +NM,total,1993,1636453 +NM,total,1992,1595442 +NM,under18,1992,473176 +NM,total,1994,1682398 +NM,under18,1996,508100 +NM,total,1995,1720394 +NM,under18,1995,504558 +NM,total,1996,1752326 +NM,under18,1998,512801 +NM,total,1998,1793484 +NM,total,1997,1774839 +NM,under18,1997,514500 +NM,under18,1999,511135 +NM,total,1999,1808082 +NM,total,2000,1821204 +NM,under18,2000,508132 +NM,total,2001,1831690 +NM,under18,2001,503404 +NM,total,2002,1855309 +NM,under18,2002,502779 +NM,total,2004,1903808 +NM,under18,2004,501184 +NM,total,2003,1877574 +NM,under18,2003,500777 +NM,total,2005,1932274 +NM,under18,2005,502612 +NM,total,2006,1962137 +NM,under18,2006,505125 +NM,total,2008,2010662 +NM,under18,2008,511214 +NM,total,2007,1990070 +NM,under18,2007,508725 +NM,under18,2013,507540 +NM,total,2013,2085287 +NM,total,2009,2036802 +NM,under18,2009,515470 +NM,total,2010,2064982 +NM,under18,2010,518763 +NM,under18,2011,516513 +NM,total,2011,2077919 +NM,under18,2012,512314 +NM,total,2012,2083540 +NY,total,2012,19576125 +NY,under18,2012,4264694 +NY,total,2011,19502728 +NY,under18,2011,4294555 +NY,under18,2010,4318033 +NY,total,2010,19398228 +NY,total,2009,19307066 +NY,under18,2009,4342926 +NY,total,2013,19651127 +NY,under18,2013,4239976 +NY,total,2007,19132335 +NY,under18,2007,4410949 +NY,total,2008,19212436 +NY,under18,2008,4372170 +NY,total,2006,19104631 +NY,under18,2006,4457777 +NY,total,2005,19132610 +NY,under18,2005,4514456 +NY,total,2003,19175939 +NY,under18,2003,4619506 +NY,total,2004,19171567 +NY,under18,2004,4574065 +NY,total,2002,19137800 +NY,under18,2002,4652232 +NY,total,2001,19082838 +NY,under18,2001,4672425 +NY,under18,1999,4672587 +NY,total,1999,18882725 +NY,total,2000,19001780 +NY,under18,2000,4687374 +NY,under18,1997,4670787 +NY,total,1997,18656546 +NY,total,1998,18755906 +NY,under18,1998,4652140 +NY,total,1996,18588460 +NY,under18,1995,4648419 +NY,total,1995,18524104 +NY,under18,1996,4667647 +NY,total,1994,18459470 +NY,under18,1992,4465539 +NY,total,1992,18246653 +NY,total,1993,18374954 +NY,under18,1993,4538171 +NY,under18,1994,4605284 +NY,total,1991,18122510 +NY,under18,1991,4372727 +NY,under18,1990,4281643 +NY,total,1990,18020784 +NC,under18,1990,1625804 +NC,total,1990,6664016 +NC,total,1991,6784280 +NC,under18,1991,1640394 +NC,total,1993,7042818 +NC,under18,1993,1710267 +NC,under18,1992,1674144 +NC,total,1992,6897214 +NC,under18,1994,1750754 +NC,total,1994,7187398 +NC,total,1995,7344674 +NC,under18,1995,1785150 +NC,under18,1996,1821506 +NC,total,1996,7500670 +NC,under18,1998,1894753 +NC,total,1998,7809122 +NC,total,1997,7656825 +NC,under18,1997,1861621 +NC,total,2000,8081614 +NC,under18,2000,1967626 +NC,total,1999,7949362 +NC,under18,1999,1932141 +NC,total,2001,8210122 +NC,under18,2001,2003782 +NC,total,2002,8326201 +NC,under18,2002,2034451 +NC,total,2004,8553152 +NC,under18,2004,2085165 +NC,total,2003,8422501 +NC,under18,2003,2060838 +NC,total,2005,8705407 +NC,under18,2005,2122485 +NC,total,2006,8917270 +NC,under18,2006,2166393 +NC,total,2008,9309449 +NC,under18,2008,2252101 +NC,total,2007,9118037 +NC,under18,2007,2219168 +NC,under18,2013,2285605 +NC,total,2013,9848060 +NC,total,2009,9449566 +NC,under18,2009,2272955 +NC,total,2010,9559533 +NC,under18,2010,2282288 +NC,under18,2011,2284238 +NC,total,2011,9651377 +NC,under18,2012,2284122 +NC,total,2012,9748364 +ND,total,2012,701345 +ND,under18,2012,156765 +ND,total,2011,684867 +ND,under18,2011,152357 +ND,under18,2010,150179 +ND,total,2010,674344 +ND,total,2009,664968 +ND,under18,2009,148674 +ND,total,2013,723393 +ND,under18,2013,162688 +ND,total,2007,652822 +ND,under18,2007,147263 +ND,total,2008,657569 +ND,under18,2008,147462 +ND,total,2006,649422 +ND,under18,2006,147331 +ND,total,2005,646089 +ND,under18,2005,148119 +ND,total,2003,638817 +ND,under18,2003,150406 +ND,total,2004,644705 +ND,under18,2004,149128 +ND,total,2002,638168 +ND,under18,2002,153097 +ND,total,2001,639062 +ND,under18,2001,156113 +ND,total,1999,644259 +ND,under18,1999,163056 +ND,total,2000,642023 +ND,under18,2000,160477 +ND,total,1997,649716 +ND,under18,1997,167475 +ND,under18,1998,165448 +ND,total,1998,647532 +ND,under18,1996,169257 +ND,total,1996,650382 +ND,total,1995,647832 +ND,under18,1995,171146 +ND,under18,1994,172160 +ND,total,1994,644806 +ND,under18,1992,172052 +ND,total,1992,638223 +ND,total,1993,641216 +ND,under18,1993,172168 +ND,total,1991,635753 +ND,under18,1991,171730 +ND,under18,1990,170920 +ND,total,1990,637685 +OH,under18,1990,2778491 +OH,total,1990,10864162 +OH,total,1991,10945762 +OH,under18,1991,2806959 +OH,total,1993,11101140 +OH,under18,1993,2855785 +OH,under18,1992,2839356 +OH,total,1992,11029431 +OH,under18,1994,2875397 +OH,total,1994,11152455 +OH,total,1995,11202751 +OH,under18,1995,2879930 +OH,under18,1996,2883443 +OH,total,1996,11242827 +OH,under18,1998,2896255 +OH,total,1998,11311536 +OH,total,1997,11277357 +OH,under18,1997,2897375 +OH,total,2000,11363543 +OH,under18,2000,2886585 +OH,total,1999,11335454 +OH,under18,1999,2893270 +OH,total,2001,11387404 +OH,under18,2001,2878123 +OH,total,2002,11407889 +OH,under18,2002,2865674 +OH,total,2004,11452251 +OH,under18,2004,2836068 +OH,total,2003,11434788 +OH,under18,2003,2849573 +OH,total,2005,11463320 +OH,under18,2005,2819794 +OH,total,2006,11481213 +OH,under18,2006,2804828 +OH,total,2008,11515391 +OH,under18,2008,2768968 +OH,total,2007,11500468 +OH,under18,2007,2790347 +OH,under18,2013,2649830 +OH,total,2013,11570808 +OH,total,2009,11528896 +OH,under18,2009,2748051 +OH,total,2010,11545435 +OH,under18,2010,2722589 +OH,under18,2011,2693469 +OH,total,2011,11549772 +OH,under18,2012,2668125 +OH,total,2012,11553031 +OK,total,2012,3815780 +OK,under18,2012,939911 +OK,total,2011,3785534 +OK,under18,2011,935714 +OK,under18,2010,931483 +OK,total,2010,3759263 +OK,total,2009,3717572 +OK,under18,2009,922711 +OK,total,2013,3850568 +OK,under18,2013,947027 +OK,total,2007,3634349 +OK,under18,2007,904328 +OK,total,2008,3668976 +OK,under18,2008,910617 +OK,total,2006,3594090 +OK,under18,2006,894761 +OK,total,2005,3548597 +OK,under18,2005,885316 +OK,total,2003,3504892 +OK,under18,2003,883959 +OK,total,2004,3525233 +OK,under18,2004,881606 +OK,total,2002,3489080 +OK,under18,2002,884961 +OK,total,2001,3467100 +OK,under18,2001,885218 +OK,total,1999,3437148 +OK,under18,1999,895678 +OK,total,2000,3454365 +OK,under18,2000,891847 +OK,total,1997,3372918 +OK,under18,1997,893835 +OK,under18,1998,898501 +OK,total,1998,3405194 +OK,under18,1996,887093 +OK,total,1996,3340129 +OK,total,1995,3308208 +OK,under18,1995,883667 +OK,under18,1994,877803 +OK,total,1994,3280940 +OK,under18,1992,862548 +OK,total,1992,3220517 +OK,total,1993,3252285 +OK,under18,1993,870137 +OK,total,1991,3175440 +OK,under18,1991,849639 +OK,under18,1990,841715 +OK,total,1990,3148825 +OR,under18,1990,742436 +OR,total,1990,2860375 +OR,total,1991,2928507 +OR,under18,1991,752442 +OR,total,1993,3060367 +OR,under18,1993,778973 +OR,under18,1992,770191 +OR,total,1992,2991755 +OR,under18,1994,793435 +OR,total,1994,3121264 +OR,total,1995,3184369 +OR,under18,1995,806512 +OR,under18,1996,816102 +OR,total,1996,3247111 +OR,under18,1998,837928 +OR,total,1998,3352449 +OR,total,1997,3304310 +OR,under18,1997,830002 +OR,total,2000,3429708 +OR,under18,2000,847511 +OR,total,1999,3393941 +OR,under18,1999,843484 +OR,total,2001,3467937 +OR,under18,2001,848663 +OR,total,2002,3513424 +OR,under18,2002,850733 +OR,total,2004,3569463 +OR,under18,2004,846786 +OR,total,2003,3547376 +OR,under18,2003,850251 +OR,total,2005,3613202 +OR,under18,2005,849323 +OR,total,2006,3670883 +OR,under18,2006,857003 +OR,total,2008,3768748 +OR,under18,2008,865664 +OR,total,2007,3722417 +OR,under18,2007,862161 +OR,under18,2013,857606 +OR,total,2013,3930065 +OR,total,2009,3808600 +OR,under18,2009,866194 +OR,total,2010,3837208 +OR,under18,2010,865129 +OR,under18,2011,862518 +OR,total,2011,3867937 +OR,under18,2012,859910 +OR,total,2012,3899801 +PA,total,2012,12764475 +PA,under18,2012,2737905 +PA,total,2011,12741310 +PA,under18,2011,2761343 +PA,under18,2010,2785316 +PA,total,2010,12710472 +PA,total,2009,12666858 +PA,under18,2009,2804929 +PA,total,2013,12773801 +PA,under18,2013,2715645 +PA,total,2007,12563937 +PA,under18,2007,2839574 +PA,total,2008,12612285 +PA,under18,2008,2821004 +PA,total,2006,12510809 +PA,under18,2006,2850778 +PA,total,2005,12449990 +PA,under18,2005,2859793 +PA,total,2003,12374658 +PA,under18,2003,2883270 +PA,total,2004,12410722 +PA,under18,2004,2873125 +PA,total,2002,12331031 +PA,under18,2002,2894935 +PA,total,2001,12298970 +PA,under18,2001,2905836 +PA,total,1999,12263805 +PA,under18,1999,2930193 +PA,total,2000,12284173 +PA,under18,2000,2918850 +PA,total,1997,12227814 +PA,under18,1997,2942240 +PA,under18,1998,2940285 +PA,total,1998,12245672 +PA,under18,1996,2937411 +PA,total,1996,12220464 +PA,total,1995,12198403 +PA,under18,1995,2941531 +PA,under18,1994,2932851 +PA,total,1994,12166050 +PA,under18,1992,2873013 +PA,total,1992,12049450 +PA,total,1993,12119724 +PA,under18,1993,2907351 +PA,total,1991,11982164 +PA,under18,1991,2830059 +PA,under18,1990,2799168 +PA,total,1990,11903299 +RI,under18,1990,225923 +RI,total,1990,1005995 +RI,total,1991,1010649 +RI,under18,1991,229448 +RI,total,1993,1015113 +RI,under18,1993,237218 +RI,under18,1992,232630 +RI,total,1992,1012581 +RI,under18,1994,239100 +RI,total,1994,1015960 +RI,total,1995,1017002 +RI,under18,1995,240553 +RI,under18,1996,240569 +RI,total,1996,1020893 +RI,under18,1998,241760 +RI,total,1998,1031155 +RI,total,1997,1025353 +RI,under18,1997,242079 +RI,total,2000,1050268 +RI,under18,2000,248065 +RI,total,1999,1040402 +RI,under18,1999,247014 +RI,total,2001,1057142 +RI,under18,2001,248296 +RI,total,2002,1065995 +RI,under18,2002,248690 +RI,total,2004,1074579 +RI,under18,2004,246228 +RI,total,2003,1071342 +RI,under18,2003,248075 +RI,total,2005,1067916 +RI,under18,2005,241932 +RI,total,2006,1063096 +RI,under18,2006,237348 +RI,total,2008,1055003 +RI,under18,2008,229798 +RI,total,2007,1057315 +RI,under18,2007,233655 +RI,under18,2013,213987 +RI,total,2013,1051511 +RI,total,2009,1053646 +RI,under18,2009,225902 +RI,total,2010,1052669 +RI,under18,2010,223088 +RI,under18,2011,219783 +RI,total,2011,1050350 +RI,under18,2012,216591 +RI,total,2012,1050304 +SC,total,2012,4723417 +SC,under18,2012,1077455 +SC,total,2011,4673509 +SC,under18,2011,1076524 +SC,under18,2010,1079978 +SC,total,2010,4636361 +SC,total,2009,4589872 +SC,under18,2009,1079729 +SC,total,2013,4774839 +SC,under18,2013,1079798 +SC,total,2007,4444110 +SC,under18,2007,1064190 +SC,total,2008,4528996 +SC,under18,2008,1074116 +SC,total,2006,4357847 +SC,under18,2006,1050042 +SC,total,2005,4270150 +SC,under18,2005,1036941 +SC,total,2003,4150297 +SC,under18,2003,1023785 +SC,total,2004,4210921 +SC,under18,2004,1029111 +SC,total,2002,4107795 +SC,under18,2002,1020531 +SC,total,2001,4064995 +SC,under18,2001,1016134 +SC,total,1999,3974682 +SC,under18,1999,1007050 +SC,total,2000,4024223 +SC,under18,2000,1010641 +SC,total,1997,3859696 +SC,under18,1997,1001681 +SC,under18,1998,1006371 +SC,total,1998,3919235 +SC,under18,1996,987576 +SC,total,1996,3796200 +SC,total,1995,3748582 +SC,under18,1995,975884 +SC,under18,1994,969766 +SC,total,1994,3705397 +SC,under18,1992,947868 +SC,total,1992,3620464 +SC,total,1993,3663314 +SC,under18,1993,956951 +SC,total,1991,3570404 +SC,under18,1991,936122 +SC,under18,1990,921041 +SC,total,1990,3501155 +SD,under18,1990,199453 +SD,total,1990,697101 +SD,total,1991,703669 +SD,under18,1991,201749 +SD,total,1993,722160 +SD,under18,1993,207975 +SD,under18,1992,206632 +SD,total,1992,712801 +SD,under18,1994,208443 +SD,total,1994,730790 +SD,total,1995,737926 +SD,under18,1995,207890 +SD,under18,1996,205780 +SD,total,1996,742214 +SD,under18,1998,204786 +SD,total,1998,746059 +SD,total,1997,744223 +SD,under18,1997,205978 +SD,total,2000,755844 +SD,under18,2000,202681 +SD,total,1999,750413 +SD,under18,1999,203737 +SD,total,2001,757972 +SD,under18,2001,200795 +SD,total,2002,760020 +SD,under18,2002,198694 +SD,total,2004,770396 +SD,under18,2004,196804 +SD,total,2003,763729 +SD,under18,2003,197326 +SD,total,2005,775493 +SD,under18,2005,196476 +SD,total,2006,783033 +SD,under18,2006,197332 +SD,total,2008,799124 +SD,under18,2008,199848 +SD,total,2007,791623 +SD,under18,2007,198847 +SD,under18,2013,207959 +SD,total,2013,844877 +SD,total,2009,807067 +SD,under18,2009,201204 +SD,total,2010,816211 +SD,under18,2010,203145 +SD,under18,2011,203948 +SD,total,2011,823772 +SD,under18,2012,205298 +SD,total,2012,834047 +TN,total,2012,6454914 +TN,under18,2012,1492689 +TN,total,2011,6398361 +TN,under18,2011,1491837 +TN,under18,2010,1495090 +TN,total,2010,6356683 +TN,total,2009,6306019 +TN,under18,2009,1494687 +TN,total,2013,6495978 +TN,under18,2013,1491577 +TN,total,2007,6175727 +TN,under18,2007,1482747 +TN,total,2008,6247411 +TN,under18,2008,1494354 +TN,total,2006,6088766 +TN,under18,2006,1470166 +TN,total,2005,5991057 +TN,under18,2005,1449326 +TN,total,2003,5847812 +TN,under18,2003,1424861 +TN,total,2004,5910809 +TN,under18,2004,1433343 +TN,total,2002,5795918 +TN,under18,2002,1414857 +TN,total,2001,5750789 +TN,under18,2001,1407578 +TN,total,1999,5638706 +TN,under18,1999,1385997 +TN,total,2000,5703719 +TN,under18,2000,1399685 +TN,total,1997,5499233 +TN,under18,1997,1359030 +TN,under18,1998,1369987 +TN,total,1998,5570045 +TN,under18,1996,1345723 +TN,total,1996,5416643 +TN,total,1995,5326936 +TN,under18,1995,1331616 +TN,under18,1994,1310988 +TN,total,1994,5231438 +TN,under18,1992,1259458 +TN,total,1992,5049742 +TN,total,1993,5137584 +TN,under18,1993,1285044 +TN,total,1991,4966587 +TN,under18,1991,1233260 +TN,under18,1990,1220200 +TN,total,1990,4894492 +TX,under18,1990,4906220 +TX,total,1990,17056755 +TX,total,1991,17398005 +TX,under18,1991,5000793 +TX,total,1993,18161612 +TX,under18,1993,5217899 +TX,under18,1992,5109805 +TX,total,1992,17759738 +TX,under18,1994,5331524 +TX,total,1994,18564062 +TX,total,1995,18958751 +TX,under18,1995,5421784 +TX,under18,1996,5551447 +TX,total,1996,19340342 +TX,under18,1998,5759054 +TX,total,1998,20157531 +TX,total,1997,19740317 +TX,under18,1997,5655482 +TX,total,2000,20944499 +TX,under18,2000,5906301 +TX,total,1999,20558220 +TX,under18,1999,5840211 +TX,total,2001,21319622 +TX,under18,2001,5980187 +TX,total,2002,21690325 +TX,under18,2002,6060372 +TX,total,2004,22394023 +TX,under18,2004,6208259 +TX,total,2003,22030931 +TX,under18,2003,6132980 +TX,total,2005,22778123 +TX,under18,2005,6290970 +TX,total,2006,23359580 +TX,under18,2006,6446798 +TX,total,2008,24309039 +TX,under18,2008,6675917 +TX,total,2007,23831983 +TX,under18,2007,6565872 +TX,under18,2013,7041986 +TX,total,2013,26448193 +TX,total,2009,24801761 +TX,under18,2009,6792907 +TX,total,2010,25245178 +TX,under18,2010,6879014 +TX,under18,2011,6931758 +TX,total,2011,25640909 +TX,under18,2012,6985807 +TX,total,2012,26060796 +UT,total,2012,2854871 +UT,under18,2012,888578 +UT,total,2011,2814784 +UT,under18,2011,881350 +UT,under18,2010,873019 +UT,total,2010,2774424 +UT,total,2009,2723421 +UT,under18,2009,857853 +UT,total,2013,2900872 +UT,under18,2013,896589 +UT,total,2007,2597746 +UT,under18,2007,815496 +UT,total,2008,2663029 +UT,under18,2008,837258 +UT,total,2006,2525507 +UT,under18,2006,789957 +UT,total,2005,2457719 +UT,under18,2005,767888 +UT,total,2003,2360137 +UT,under18,2003,740483 +UT,total,2004,2401580 +UT,under18,2004,751771 +UT,total,2002,2324815 +UT,under18,2002,733517 +UT,total,2001,2283715 +UT,under18,2001,726819 +UT,total,1999,2203482 +UT,under18,1999,715398 +UT,total,2000,2244502 +UT,under18,2000,721686 +UT,total,1997,2119784 +UT,under18,1997,699528 +UT,under18,1998,709386 +UT,total,1998,2165961 +UT,under18,1996,687078 +UT,total,1996,2067976 +UT,total,1995,2014179 +UT,under18,1995,679636 +UT,under18,1994,673935 +UT,total,1994,1960446 +UT,under18,1992,648725 +UT,total,1992,1836799 +UT,total,1993,1898404 +UT,under18,1993,662968 +UT,total,1991,1779780 +UT,under18,1991,637216 +UT,under18,1990,627122 +UT,total,1990,1731223 +VT,under18,1990,143296 +VT,total,1990,564798 +VT,total,1991,568606 +VT,under18,1991,145219 +VT,total,1993,577748 +VT,under18,1993,148705 +VT,under18,1992,146983 +VT,total,1992,572751 +VT,under18,1994,150794 +VT,total,1994,583836 +VT,total,1995,589003 +VT,under18,1995,151439 +VT,under18,1996,151490 +VT,total,1996,593701 +VT,under18,1998,148467 +VT,total,1998,600416 +VT,total,1997,597239 +VT,under18,1997,150040 +VT,total,2000,609618 +VT,under18,2000,147549 +VT,total,1999,604683 +VT,under18,1999,147859 +VT,total,2001,612223 +VT,under18,2001,146040 +VT,total,2002,615442 +VT,under18,2002,144441 +VT,total,2004,619920 +VT,under18,2004,141068 +VT,total,2003,617858 +VT,under18,2003,142718 +VT,total,2005,621215 +VT,under18,2005,138933 +VT,total,2006,622892 +VT,under18,2006,136731 +VT,total,2008,624151 +VT,under18,2008,132600 +VT,total,2007,623481 +VT,under18,2007,134695 +VT,under18,2013,122701 +VT,total,2013,626630 +VT,total,2009,624817 +VT,under18,2009,130450 +VT,total,2010,625793 +VT,under18,2010,128601 +VT,under18,2011,126500 +VT,total,2011,626320 +VT,under18,2012,124555 +VT,total,2012,625953 +VA,total,2012,8186628 +VA,under18,2012,1861323 +VA,total,2011,8105850 +VA,under18,2011,1857585 +VA,under18,2010,1855025 +VA,total,2010,8024417 +VA,total,2009,7925937 +VA,under18,2009,1845132 +VA,total,2013,8260405 +VA,under18,2013,1864535 +VA,total,2007,7751000 +VA,under18,2007,1834386 +VA,total,2008,7833496 +VA,under18,2008,1838361 +VA,total,2005,7577105 +VA,under18,2005,1816270 +VA,total,2006,7673725 +VA,under18,2006,1826368 +VA,total,2003,7366977 +VA,under18,2003,1782254 +VA,total,2004,7475575 +VA,under18,2004,1801958 +VA,total,2002,7286873 +VA,under18,2002,1771247 +VA,total,2001,7198362 +VA,under18,2001,1754549 +VA,total,1999,7000174 +VA,under18,1999,1723125 +VA,total,2000,7105817 +VA,under18,2000,1741420 +VA,total,1997,6829183 +VA,under18,1997,1683766 +VA,under18,1998,1706261 +VA,total,1998,6900918 +VA,under18,1996,1664147 +VA,total,1996,6750884 +VA,total,1995,6670693 +VA,under18,1995,1649005 +VA,under18,1994,1628711 +VA,total,1994,6593139 +VA,under18,1992,1581544 +VA,total,1992,6414307 +VA,total,1993,6509630 +VA,under18,1993,1604758 +VA,total,1991,6301217 +VA,under18,1991,1548258 +VA,under18,1990,1520670 +VA,total,1990,6216884 +WA,under18,1990,1301545 +WA,total,1990,4903043 +WA,total,1991,5025624 +WA,under18,1991,1326527 +WA,total,1993,5278842 +WA,under18,1993,1387716 +WA,under18,1992,1365480 +WA,total,1992,5160757 +WA,under18,1994,1409922 +WA,total,1994,5375161 +WA,total,1995,5481027 +WA,under18,1995,1429397 +WA,under18,1996,1449613 +WA,total,1996,5569753 +WA,under18,1998,1494784 +WA,total,1998,5769562 +WA,total,1997,5674747 +WA,under18,1997,1473646 +WA,total,2000,5910512 +WA,under18,2000,1516361 +WA,total,1999,5842564 +WA,under18,1999,1507824 +WA,total,2001,5985722 +WA,under18,2001,1517527 +WA,total,2002,6052349 +WA,under18,2002,1517655 +WA,total,2004,6178645 +WA,under18,2004,1520751 +WA,total,2003,6104115 +WA,under18,2003,1514877 +WA,total,2005,6257305 +WA,under18,2005,1523890 +WA,total,2006,6370753 +WA,under18,2006,1536926 +WA,total,2008,6562231 +WA,under18,2008,1560302 +WA,total,2007,6461587 +WA,under18,2007,1549582 +WA,under18,2013,1595795 +WA,total,2013,6971406 +WA,total,2009,6667426 +WA,under18,2009,1574403 +WA,total,2010,6742256 +WA,under18,2010,1581436 +WA,under18,2011,1584709 +WA,total,2011,6821481 +WA,under18,2012,1588451 +WA,total,2012,6895318 +WV,total,2012,1856680 +WV,under18,2012,384030 +WV,total,2011,1855184 +WV,under18,2011,385283 +WV,under18,2010,387224 +WV,total,2010,1854146 +WV,total,2009,1847775 +WV,under18,2009,389036 +WV,total,2013,1854304 +WV,under18,2013,381678 +WV,total,2007,1834052 +WV,under18,2007,390661 +WV,total,2008,1840310 +WV,under18,2008,390210 +WV,total,2006,1827912 +WV,under18,2006,390637 +WV,total,2005,1820492 +WV,under18,2005,390431 +WV,total,2003,1812295 +WV,under18,2003,392460 +WV,total,2004,1816438 +WV,under18,2004,391856 +WV,total,2002,1805414 +WV,under18,2002,393569 +WV,total,2001,1801481 +WV,under18,2001,395307 +WV,total,1999,1811799 +WV,under18,1999,406784 +WV,total,2000,1807021 +WV,under18,2000,401062 +WV,total,1997,1819113 +WV,under18,1997,418037 +WV,under18,1998,412793 +WV,total,1998,1815609 +WV,under18,1996,422831 +WV,total,1996,1822808 +WV,total,1995,1823700 +WV,under18,1995,428790 +WV,under18,1994,429128 +WV,total,1994,1820421 +WV,under18,1992,433116 +WV,total,1992,1806451 +WV,total,1993,1817539 +WV,under18,1993,432364 +WV,total,1991,1798735 +WV,under18,1991,433918 +WV,under18,1990,436797 +WV,total,1990,1792548 +WI,under18,1990,1302869 +WI,total,1990,4904562 +WI,total,1991,4964343 +WI,under18,1991,1314855 +WI,total,1993,5084889 +WI,under18,1993,1337334 +WI,under18,1992,1330555 +WI,total,1992,5025398 +WI,under18,1994,1348110 +WI,total,1994,5133678 +WI,total,1995,5184836 +WI,under18,1995,1351343 +WI,under18,1996,1352877 +WI,total,1996,5229986 +WI,under18,1998,1362907 +WI,total,1998,5297673 +WI,total,1997,5266213 +WI,under18,1997,1359712 +WI,total,1999,5332666 +WI,under18,1999,1367019 +WI,total,2000,5373999 +WI,under18,2000,1370440 +WI,total,2001,5406835 +WI,under18,2001,1367593 +WI,total,2002,5445162 +WI,under18,2002,1365315 +WI,total,2004,5514026 +WI,under18,2004,1354643 +WI,total,2003,5479203 +WI,under18,2003,1358505 +WI,total,2005,5546166 +WI,under18,2005,1349866 +WI,total,2006,5577655 +WI,under18,2006,1348785 +WI,total,2008,5640996 +WI,under18,2008,1345573 +WI,total,2007,5610775 +WI,under18,2007,1348901 +WI,under18,2013,1307776 +WI,total,2013,5742713 +WI,total,2009,5669264 +WI,under18,2009,1342411 +WI,total,2010,5689060 +WI,under18,2010,1336094 +WI,under18,2011,1325870 +WI,total,2011,5708785 +WI,under18,2012,1316113 +WI,total,2012,5724554 +WY,total,2012,576626 +WY,under18,2012,136526 +WY,total,2011,567329 +WY,under18,2011,135407 +WY,under18,2010,135351 +WY,total,2010,564222 +WY,total,2009,559851 +WY,under18,2009,134960 +WY,total,2013,582658 +WY,under18,2013,137679 +WY,total,2007,534876 +WY,under18,2007,128760 +WY,total,2008,546043 +WY,under18,2008,131511 +WY,total,2006,522667 +WY,under18,2006,125525 +WY,total,2005,514157 +WY,under18,2005,124022 +WY,total,2003,503453 +WY,under18,2003,124182 +WY,total,2004,509106 +WY,under18,2004,123974 +WY,total,2002,500017 +WY,under18,2002,125495 +WY,total,2001,494657 +WY,under18,2001,126212 +WY,total,2000,494300 +WY,under18,2000,128774 +WY,total,1999,491780 +WY,under18,1999,130793 +WY,total,1997,489452 +WY,under18,1997,134328 +WY,under18,1998,132602 +WY,total,1998,490787 +WY,under18,1996,135698 +WY,total,1996,488167 +WY,total,1995,485160 +WY,under18,1995,136785 +WY,under18,1994,137733 +WY,total,1994,480283 +WY,under18,1992,137308 +WY,total,1992,466251 +WY,total,1993,473081 +WY,under18,1993,137458 +WY,total,1991,459260 +WY,under18,1991,136720 +WY,under18,1990,136078 +WY,total,1990,453690 +PR,under18,1990,NaN +PR,total,1990,NaN +PR,total,1991,NaN +PR,under18,1991,NaN +PR,total,1993,NaN +PR,under18,1993,NaN +PR,under18,1992,NaN +PR,total,1992,NaN +PR,under18,1994,NaN +PR,total,1994,NaN +PR,total,1995,NaN +PR,under18,1995,NaN +PR,under18,1996,NaN +PR,total,1996,NaN +PR,under18,1998,NaN +PR,total,1998,NaN +PR,total,1997,NaN +PR,under18,1997,NaN +PR,total,1999,NaN +PR,under18,1999,NaN +PR,total,2000,3810605 +PR,under18,2000,1089063 +PR,total,2001,3818774 +PR,under18,2001,1077566 +PR,total,2002,3823701 +PR,under18,2002,1065051 +PR,total,2004,3826878 +PR,under18,2004,1035919 +PR,total,2003,3826095 +PR,under18,2003,1050615 +PR,total,2005,3821362 +PR,under18,2005,1019447 +PR,total,2006,3805214 +PR,under18,2006,998543 +PR,total,2007,3782995 +PR,under18,2007,973613 +PR,total,2008,3760866 +PR,under18,2008,945705 +PR,under18,2013,814068 +PR,total,2013,3615086 +PR,total,2009,3740410 +PR,under18,2009,920794 +PR,total,2010,3721208 +PR,under18,2010,896945 +PR,under18,2011,869327 +PR,total,2011,3686580 +PR,under18,2012,841740 +PR,total,2012,3651545 +USA,under18,1990,64218512 +USA,total,1990,249622814 +USA,total,1991,252980942 +USA,under18,1991,65313018 +USA,under18,1992,66509177 +USA,total,1992,256514231 +USA,total,1993,259918595 +USA,under18,1993,67594938 +USA,under18,1994,68640936 +USA,total,1994,263125826 +USA,under18,1995,69473140 +USA,under18,1996,70233512 +USA,total,1995,266278403 +USA,total,1996,269394291 +USA,total,1997,272646932 +USA,under18,1997,70920738 +USA,under18,1998,71431406 +USA,total,1998,275854116 +USA,under18,1999,71946051 +USA,total,2000,282162411 +USA,under18,2000,72376189 +USA,total,1999,279040181 +USA,total,2001,284968955 +USA,under18,2001,72671175 +USA,total,2002,287625193 +USA,under18,2002,72936457 +USA,total,2003,290107933 +USA,under18,2003,73100758 +USA,total,2004,292805298 +USA,under18,2004,73297735 +USA,total,2005,295516599 +USA,under18,2005,73523669 +USA,total,2006,298379912 +USA,under18,2006,73757714 +USA,total,2007,301231207 +USA,under18,2007,74019405 +USA,total,2008,304093966 +USA,under18,2008,74104602 +USA,under18,2013,73585872 +USA,total,2013,316128839 +USA,total,2009,306771529 +USA,under18,2009,74134167 +USA,under18,2010,74119556 +USA,total,2010,309326295 +USA,under18,2011,73902222 +USA,total,2011,311582564 +USA,under18,2012,73708179 +USA,total,2012,313873685